We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97164ff commit 720cd97Copy full SHA for 720cd97
.gitea/workflows/release.yml
@@ -13,9 +13,9 @@ jobs:
13
14
- name: Build and push
15
run: |
16
- docker buildx build
17
- --file ${{ vars.WDIR }}/Dockerfile
18
- --platform linux/amd64
19
- --tag ${{ vars.DOCKER_REGISTRY }}/${{ gitea.repository }}:latest
20
- --tag ${{ vars.DOCKER_REGISTRY }}/${{ gitea.repository }}:${{ gitea.sha }}
+ docker buildx build \
+ --file ${{ vars.WDIR }}/Dockerfile \
+ --platform linux/amd64 \
+ --tag ${{ vars.DOCKER_REGISTRY }}/${{ gitea.repository }}:latest \
+ --tag ${{ vars.DOCKER_REGISTRY }}/${{ gitea.repository }}:${{ gitea.sha }} \
21
--push ${{ vars.WDIR }}
0 commit comments