ci: fix token
Nix Docker Push Test / build-and-push (push) Failing after 1m32s
Nix with Cachix Action / test-nix (push) Successful in 49s

This commit is contained in:
2026-06-15 19:42:42 +09:00
parent 55003e35bd
commit d4a4c90ae6
+4 -4
View File
@@ -27,15 +27,15 @@ jobs:
run: docker load < hello-image.tar.gz
- name: Login to Gitea Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: git.zhukovsky.me
username: ${{ gitea.actor }}
password: ${{ secrets.GITEA_TOKEN }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Tag and Push
run: |
REGISTRY_IMAGE="git.zhukovsky.me/$(echo ${{ gitea.repository }}"
REGISTRY_IMAGE="git.zhukovsky.me/${{ gitea.repository }}"
echo "Pushing image to: $REGISTRY_IMAGE"
docker tag test-nix-hello:latest $REGISTRY_IMAGE:latest
docker push $REGISTRY_IMAGE:latest