Fix guide github action (#725) #122
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Guide | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
vuepress: | ||
runs-on: ubuntu-latest | ||
options: --user root | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install vuepress | ||
run: | | ||
apt update | ||
apt install yarn -y | ||
yarn global add vuepress | ||
yarn add vue-template-compiler | ||
- name: Build | ||
run: | | ||
vuepress build | ||
working-directory: ./guide | ||
- name: Push | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git init | ||
git add -A | ||
git commit -m 'deploy' | ||
git push -f https://x-access-token:${GITHUB_TOKEN}@github.com/bethgelab/foolbox.git master:gh-pages | ||
working-directory: ./guide/.vuepress/dist |