From 37e03762ddcce759ca350cdd9cbf4567218f7108 Mon Sep 17 00:00:00 2001 From: butterrobot Date: Tue, 8 Sep 2026 17:59:43 +0000 Subject: [PATCH] ci: rename the FORGEJO_TOKEN secret to ACTIONS_TOKEN (FMG-6) The release job read the registry login password and GITEA_TOKEN from secrets.FORGEJO_TOKEN. Both now read secrets.ACTIONS_TOKEN. Closes FMG-6 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e3ab84..5a1e359 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,10 +19,10 @@ jobs: go-version-file: go.mod - name: Login to container registry - run: echo "${{ secrets.FORGEJO_TOKEN }}" | docker login git.nakama.town -u ${{ github.actor }} --password-stdin + run: echo "${{ secrets.ACTIONS_TOKEN }}" | docker login git.nakama.town -u ${{ github.actor }} --password-stdin - name: Run GoReleaser run: goreleaser release --clean env: GORELEASER_FORCE_TOKEN: gitea - GITEA_TOKEN: ${{ secrets.FORGEJO_TOKEN }} + GITEA_TOKEN: ${{ secrets.ACTIONS_TOKEN }} -- 2.52.0