From 60ba6308247fd3412f59a0b1ed1d6e75242bbc12 Mon Sep 17 00:00:00 2001 From: Barry Walker Date: Tue, 13 Jan 2026 16:29:13 -0500 Subject: [PATCH] fix: revert to github_* secret names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit User has github_token and github_username configured. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .woodpecker/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker/release.yml b/.woodpecker/release.yml index 10505c9..613d105 100644 --- a/.woodpecker/release.yml +++ b/.woodpecker/release.yml @@ -77,9 +77,9 @@ steps: image: gcr.io/kaniko-project/executor:debug environment: GHCR_USERNAME: - from_secret: ghcr_username + from_secret: github_username GHCR_TOKEN: - from_secret: ghcr_token + from_secret: github_token commands: - | VERSION=$(cat .version) @@ -94,7 +94,7 @@ steps: image: alpine/git environment: GITHUB_TOKEN: - from_secret: ghcr_token + from_secret: github_token commands: - | TAG=$(cat .tag) @@ -113,7 +113,7 @@ steps: image: woodpeckerci/plugin-github-release settings: api_key: - from_secret: ghcr_token + from_secret: github_token files: - artifacts/*.nupkg prerelease: false