archlinux-act/.forgejo/workflows/push.yaml
Edgar P. Burkhart 1971addaf2
Some checks failed
Push Docker image / build (push) Has been cancelled
Update Docker image tag in push workflow to use 'archlinux-act'
2025-05-05 18:38:25 +02:00

25 lines
614 B
YAML

name: Push Docker image
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: code.edgarpierre.fr
username: ${{ vars.DOCKER_PUSH_USERNAME }}
password: ${{ secrets.DOCKER_PUSH_PASSWORD }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: code.edgarpierre.fr/edpibu/archlinux-act:${{ github.ref_name }}