ci: use REGISTRY_TOKEN (PAT with package scope) for container registry login
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 4s

This commit is contained in:
2026-02-23 19:38:01 +01:00
parent fd552f2a2b
commit 29fb1b1c58

View File

@@ -36,7 +36,7 @@ jobs:
REGISTRY="${{ gitea.server_url }}"
REGISTRY="${REGISTRY#https://}"
REGISTRY="${REGISTRY#http://}"
echo "${{ secrets.GITEA_TOKEN }}" | docker login "$REGISTRY" -u "${{ gitea.actor }}" --password-stdin
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login "$REGISTRY" -u "${{ gitea.actor }}" --password-stdin
- name: Build and push
run: |