replace duckdns.org with internal .lab - will use .fr later
All checks were successful
Docker Build / pull-and-push-image (push) Successful in 16s

This commit is contained in:
2026-01-01 08:43:48 +01:00
parent 09fe417147
commit c1d27971f7
4 changed files with 12 additions and 11 deletions

View File

@@ -23,7 +23,7 @@ jobs:
- name: Login to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: gitea.arcodange.duckdns.org
registry: gitea.arcodange.lab
username: ${{ github.actor }}
password: ${{ secrets.PACKAGES_TOKEN }}
@@ -33,7 +33,7 @@ jobs:
TAGS="latest $CURRENT_VERSION"
for TAG in $TAGS; do
docker pull sintan1729/chhoto-url:$TAG --platform arm64
docker tag sintan1729/chhoto-url:$TAG gitea.arcodange.duckdns.org/${{ github.repository }}:$TAG
docker push gitea.arcodange.duckdns.org/${{ github.repository }}:$TAG
docker tag sintan1729/chhoto-url:$TAG gitea.arcodange.lab/${{ github.repository }}:$TAG
docker push gitea.arcodange.lab/${{ github.repository }}:$TAG
done