fix: escape secrets (#10)
ci/woodpecker/release/release Pipeline failed

- must use $$ for escaped secrets

Reviewed-on: #10
This commit was merged in pull request #10.
This commit is contained in:
2026-03-26 14:55:30 +11:00
parent 1daa48ade1
commit e9ec29d60e
+1 -1
View File
@@ -22,7 +22,7 @@ steps:
commands:
- |
curl --output /usr/local/bin/tea https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/gitea-dl/tea/0.12.0/tea-0.12.0-linux-amd64 && chmod +x /usr/local/bin/tea
tea logins add --name gitea --url https://git.unkin.net --token "${RELEASER_TOKEN}" --no-version-check
tea logins add --name gitea --url https://git.unkin.net --token "$${RELEASER_TOKEN}" --no-version-check
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || echo "")
if [ -n "$PREV_TAG" ]; then
NOTES=$(git log "${PREV_TAG}..${CI_COMMIT_TAG}" --merges --pretty=format:"- %s")