fix: use ghcr_* secret names to match Woodpecker config

WeightTracker uses ghcr_username/ghcr_token, not github_*.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Barry Walker
2026-01-13 16:28:03 -05:00
parent 6ed551f2d4
commit cf113b75b1
+4 -4
View File
@@ -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