Deploy pathvector.io #208
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: Deploy pathvector.io | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "docs/**" | |
- "generate.sh" | |
- ".github/workflows/docs.yml" | |
- "*.go" | |
jobs: | |
deploy-docs: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Generate docs | |
run: go generate -x | |
- name: Build docs | |
run: cd docs && npm install && npm run build | |
- name: Deploy to GitHub Pages | |
uses: crazy-max/ghaction-github-pages@v2 | |
with: | |
target_branch: gh-pages | |
build_dir: docs/build/ | |
fqdn: pathvector.io | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |