From ef0c472e285eed99c6f08c2f6d27b12983e0b361 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 14:52:49 -0400 Subject: [PATCH] fix(ci): use secrets.GITHUB_TOKEN in git auth step, not shell var --- .gitea/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 121ee45..1725589 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -45,7 +45,7 @@ jobs: fetch-depth: 0 - name: Configure git auth run: | - git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@scm.cabillot.eu/perso/opencode.git" + git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@scm.cabillot.eu/perso/opencode.git" - uses: anothrNick/github-tag-action@4ed44965e0db8dab2b466a16da04aec3cc312fd8 # v1.75.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}