Skip to content

Commit 9b87b16

Browse files
authored
Merge pull request #1144 from parente/debug-wiki-push
Fix GITHUB_REPOSITORY value
2 parents 7e2f380 + 84b7e4b commit 9b87b16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ jobs:
6060
run: make -C main push-all
6161
- name: Push Wiki to GitHub
6262
if: github.ref == 'refs/heads/master'
63-
run: make -C main git-commit
63+
# Pass GITHUB_REPOSITORY directly to avoid conflict with GitHub Actions built-in env var
64+
run: make -C main git-commit GITHUB_REPOSITORY='${{ github.repository }}.wiki'
6465
env:
6566
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66-
GITHUB_REPOSITORY: ${{github.repository}}.wiki
6767
LOCAL_PATH: ../wiki

0 commit comments

Comments
 (0)