.github/workflows/deploy-website.yml
name: Deploy docs to GitHub Pages
on:
push:
branches:
- main
paths:
- docs/**
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
working-directory: ./docs
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
cache-dependency-path: docs/package-lock.json
- name: Setup Pages
uses: actions/configure-pages@v1
- name: Restore cache
uses: actions/cache@v3
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Build with docusaurus
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs/build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1