Skip to content

Commit 84b7e4b

Browse files
committed
Fix GITHUB_REPOSITORY value
1 parent 4c2cbe5 commit 84b7e4b

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)