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
2005 6adddab74b
Some checks failed
/ docker (push) Failing after 5m27s
/ docker (pull_request) Failing after 4m41s
fix: replace github to secrets
2024-06-03 21:25:18 +02:00

35 lines
870 B
YAML

on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]
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
username: ${{ secrets.USER }}
password: ${{ secrets.TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
push: true
tags: |
learning-pulse/web-client:dev