From 0f0cc0db88079f6da502d23cc1aca334ec234746 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 17 Apr 2026 13:05:04 -0500 Subject: [PATCH] fix: use github.token for git push in forgejo workflow --- .forgejo/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 890a90c..a66b3ab 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -57,7 +57,7 @@ jobs: TAG="${{ steps.tag.outputs.tag }}" git config user.name "FluxCD" git config user.email "fluxcd@w5isp.com" - git remote set-url origin https://${{ secrets.REGISTRY_USER }}:${{ secrets.REGISTRY_PASSWORD }}@git.mcintire.me/graham/aprs.me.git + git remote set-url origin https://x-token:${{ github.token }}@git.mcintire.me/graham/aprs.me.git git add k8s/deployment.yaml git diff --cached --quiet && echo "No changes to commit" && exit 0 git commit -m "chore: update aprs.me image to ${IMAGE}:${TAG} [skip ci]"