Skip to content

Commit 92c0b6c

Browse files
committed
GH-285 - Fix token references in docs workflow.
1 parent 8a1e1b9 commit 92c0b6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
- name: Dispatch (partial build)
2323
if: github.ref_type == 'branch'
2424
env:
25-
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
25+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
run: gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) -f build-refname=${{ github.ref_name }}
2727
- name: Dispatch (full build)
2828
if: github.ref_type == 'tag'
2929
env:
30-
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
30+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
run: gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD)

0 commit comments

Comments
 (0)