Create and publish documentation #2
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: Create and publish documentation | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
documentation: | |
runs-on: ubuntu-latest | |
name: Create the documentation and deploy it to GitHub Pages | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "14.x" | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.7" | |
- name: Install build dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
npm install | |
- name: Download Common Config | |
run: | | |
curl -o docs/.vuepress/public/commonConfig.js https://www.theengs.io/commonConfig.js | |
- name: Build documentation | |
run: | | |
npm run docs:build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/.vuepress/dist | |
cname: tbridge02.theengs.io |