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 e03afc2 commit 4e64498Copy full SHA for 4e64498
.github/workflows/deploy-docs.yml
@@ -20,11 +20,12 @@ jobs:
20
- name: Build docs bundle
21
run: npm run build
22
23
- - name: Commit changes
24
- uses: EndBug/add-and-commit@master
25
- with:
26
- branch: "master"
27
- add: ". --dry-run"
28
- message: "Deploy docs"
29
- env:
30
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Deploy the website to the master branch
+ run: |
+ cd docs/.vuepress/dist
+ git config user.name "GitHub Actions Bot"
+ git config user.email "<>"
+ git init
+ git add -A
+ git commit -m "Deploy docs"
31
+ git push -f git@github.com:mojs/mojs.github.io.git master
0 commit comments