Use a different setup for url
Some checks failed
Build and deploy / deploy (push) Failing after 28s

This commit is contained in:
2024-10-12 01:00:44 +01:00
parent 4609222855
commit bea9ceb043

View File

@@ -19,7 +19,7 @@ jobs:
name: Login to private registry name: Login to private registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: '${{ gitea.server_url }}/${{ gitea.repository }}' registry: '${{ variables.SERVER_URL }}/${{ gitea.repository }}'
username: ${{ secrets.REGISTRY_USERNAME }} username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}
- -
@@ -27,4 +27,4 @@ jobs:
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
push: true push: true
tags: '${{ gitea.server_url }}/${{ gitea.repository }}:latest' tags: '${{ variables.SERVER_URL }}/${{ gitea.repository }}:latest'