From a11dfd8f7ee43380056aac5dbf492ee61358b0e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 16 Aug 2026 14:01:40 +0200 Subject: [PATCH] Rename the release workflow's secret to PACKAGE_TOKEN Gitea rejects secret names starting with GIT (not just the GITEA_/ GITHUB_ prefixes), so GITEA_PACKAGE_TOKEN wasn't a valid name. Co-Authored-By: Claude Sonnet 5 --- .gitea/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 34af012..c09122b 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -35,4 +35,4 @@ jobs: - name: Publish to Gitea npm registry run: pnpm publish --no-git-checks env: - NODE_AUTH_TOKEN: ${{ secrets.GITEA_PACKAGE_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.PACKAGE_TOKEN }}