This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
web-client/.github/workflows/build_and_deploy.yml

33 lines
847 B
YAML
Raw Permalink Normal View History

2024-06-03 21:05:45 +02:00
on:
push:
2024-06-11 11:11:33 +02:00
branches: ["dev", "build-test"]
2024-06-03 21:05:45 +02:00
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: https://github.com/actions/checkout@v4
- name: Set up QEMU
uses: https://github.com/docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: https://github.com/docker/login-action@v3
with:
registry: git.4o1x5.dev
2024-06-03 21:25:18 +02:00
username: ${{ secrets.USER }}
2024-06-03 21:05:45 +02:00
password: ${{ secrets.TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
push: true
tags: |
2024-06-11 11:10:51 +02:00
learning-pulse/web-client:dev
# TODO deploy