From fdabeaea7225aa5c148ca8c498b3958caaa62286 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 18 Apr 2026 12:38:02 -0500 Subject: [PATCH] Fix: use inline secrets for push URL (env vars not expanding) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2801d6c..4886f8e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -386,8 +386,8 @@ jobs: git commit -m "chore: update ${STABILITY} SHA-256 for ${VERSION} [skip ci]" \ --author="gitea-actions[bot] " - # Set push URL with GA_TOKEN for authenticated pushes - git remote set-url origin "https://jmiller:${TOKEN}@git.mokoconsulting.tech/${GITEA_ORG}/${GITEA_REPO}.git" + # Set push URL with GA_TOKEN for authenticated pushes (branch protection requires jmiller) + git remote set-url origin "https://jmiller:${{ secrets.GA_TOKEN }}@git.mokoconsulting.tech/${{ github.repository }}.git" # Push to current branch git push || true