From d1cc6e3c1566a326a1b97330a742fdc2f103ac09 Mon Sep 17 00:00:00 2001 From: Manuel Ganter Date: Wed, 4 Feb 2026 14:54:51 +0100 Subject: [PATCH] fix(ci): unset GITHUB_TOKEN to avoid conflict with GITEA_TOKEN --- .github/workflows/ci.yaml | 2 ++ .github/workflows/release.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5ba27b5..4b0c987 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,5 +28,7 @@ jobs: - name: GoReleaser Check uses: https://github.com/goreleaser/goreleaser-action@v5 + env: + GITHUB_TOKEN: "" with: args: release --snapshot --skip=publish --clean diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f6b4be6..9f06634 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -28,6 +28,7 @@ jobs: - name: Run GoReleaser uses: https://github.com/goreleaser/goreleaser-action@v5 env: + GITHUB_TOKEN: "" GITEA_TOKEN: ${{ secrets.PACKAGES_TOKEN }} GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} with: