Skip to content

Commit 16b45d1

Browse files
committedDec 13, 2021
fix documentation workflow
1 parent 8ae010d commit 16b45d1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.github/workflows/documentation.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,9 @@ jobs:
2222
- name: Generate Documentation
2323
run: npm run documentation
2424
- name: Upload
25-
run: npm run gh-pages
25+
run: |
26+
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
27+
npm run gh-pages
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+

0 commit comments

Comments
 (0)
Please sign in to comment.