You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: ChartMuseum auth failure - use shell substitution for string param
The `chartMuseumUsername` parameter is a `string` type in Dagger, but was
passed as `env:CHARTMUSEUM_USERNAME` in CI. The `env:` prefix only works
for `Secret` type parameters - for strings, it's passed literally, causing
the curl command to use "env:CHARTMUSEUM_USERNAME" as the username instead
of the actual value. Changed to shell variable substitution `$CHARTMUSEUM_USERNAME`.
Also quotes curl auth variables and updates renovate test import paths.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments