Version Packages (#4713) #667
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: Docs | |
on: | |
push: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
build: | |
permissions: | |
contents: write # to push changes in repo (jamesives/github-pages-deploy-action) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Build docs | |
working-directory: docs | |
run: | | |
yarn install | |
yarn docs:build | |
- name: Publish docs | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/.vuepress/dist | |
target-folder: docs |