From 69d74881dc4d4fc3deb0aeb5e9ddeb3f1d819022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hartmut=20N=C3=B6renberg?= Date: Mon, 13 Apr 2026 08:09:56 +0200 Subject: [PATCH] ci(release): use REGISTRY_TOKEN PAT for Gitea registry login The auto-provisioned GITHUB_TOKEN in Gitea Actions does not carry package-registry write permission. Use a personal access token stored as a repo secret instead. --- .github/workflows/release-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-image.yml b/.github/workflows/release-image.yml index 2c7f135..c43ba34 100644 --- a/.github/workflows/release-image.yml +++ b/.github/workflows/release-image.yml @@ -46,7 +46,7 @@ jobs: # GITHUB_TOKEN is auto-provisioned by Gitea Actions for the running # workflow; no manual secret configuration required. run: | - echo "${{ secrets.GITHUB_TOKEN }}" | \ + echo "${{ secrets.REGISTRY_TOKEN }}" | \ docker login "${{ steps.registry.outputs.host }}" \ -u "${{ github.actor }}" --password-stdin