Update .gitea/workflows/build.yaml
Some checks failed
Build morthimer/caddy-homelab image / lint (push) Successful in 8s
Build morthimer/caddy-homelab image / build (push) Failing after 9s

This commit is contained in:
2024-05-12 16:49:40 +02:00
parent 5dff21e1ff
commit fdced86e1f

View File

@@ -23,7 +23,7 @@ jobs:
- name: Repository login - name: Repository login
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ secretd.DOCKER_REGISTRY }} registry: ${{ secrets.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
@@ -32,7 +32,7 @@ jobs:
with: with:
push: true push: true
tags: | tags: |
${{ env.REGISTRY }}/${{ gitea.repository }}:latest ${{ secrets.DOCKER_REGISTRY }}/${{ gitea.repository }}:latest
build-args: | build-args: |
WEBSERVER_VERSION=${{ env.CADDY_VERSION }} WEBSERVER_VERSION=${{ env.CADDY_VERSION }}
DOCKER_PROXY_VERSION=${{ env.CADDY_DOCKER_PROXY_VERSION }} DOCKER_PROXY_VERSION=${{ env.CADDY_DOCKER_PROXY_VERSION }}