From cf113b75b13c2121e080ad5ef7714cf60984a7df Mon Sep 17 00:00:00 2001 From: Barry Walker Date: Tue, 13 Jan 2026 16:28:03 -0500 Subject: [PATCH] fix: use ghcr_* secret names to match Woodpecker config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WeightTracker uses ghcr_username/ghcr_token, not github_*. 🤖 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 613d105..10505c9 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: github_username + from_secret: ghcr_username GHCR_TOKEN: - from_secret: github_token + from_secret: ghcr_token commands: - | VERSION=$(cat .version) @@ -94,7 +94,7 @@ steps: image: alpine/git environment: GITHUB_TOKEN: - from_secret: github_token + from_secret: ghcr_token commands: - | TAG=$(cat .tag) @@ -113,7 +113,7 @@ steps: image: woodpeckerci/plugin-github-release settings: api_key: - from_secret: github_token + from_secret: ghcr_token files: - artifacts/*.nupkg prerelease: false