We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14139c7 commit 4234c96Copy full SHA for 4234c96
.github/workflows/deploy-docs.yml
@@ -20,12 +20,9 @@ jobs:
20
- name: Build docs bundle
21
run: npm run build
22
23
- - name: Deploy the website to the master branch
24
- run: |
25
- cd docs/.vuepress/dist
26
- git config --global user.name "Xavier Foucrier"
27
- git config --global user.email "[email protected]"
28
- git init
29
- git add -A
30
- git commit -m "Deploy docs"
31
- git push -f [email protected]:mojs/mojs.github.io.git master
+ - name: Deploy the documentation
+ uses: grasilife/github-pages-deploy-action@master
+ env:
+ BASE_BRANCH: source
+ BRANCH: master
+ FOLDER: ./docs/.vuepress/dist
0 commit comments