Update .gitea/workflows/workflow_dispatch.yaml
This commit is contained in:
parent
77b4ff5751
commit
cc32843ba2
1 changed files with 8 additions and 1 deletions
|
@ -13,6 +13,13 @@ jobs:
|
|||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
-
|
||||
name: Log in to Gitea Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.lerch.org
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
|
@ -21,7 +28,7 @@ jobs:
|
|||
platforms: linux/amd64,linux/arm64
|
||||
# load: true # will not work for multiplatform
|
||||
push: true
|
||||
tags: user/app:latest
|
||||
tags: ${{ github.actor }}/actions_test:latest
|
||||
# -
|
||||
# if: always()
|
||||
# name: Sleep 5 min
|
||||
|
|
Loading…
Add table
Reference in a new issue