Adds docusaurus versioning #8
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: Build versioned docs | |
# on: | |
# workflow_run: | |
# workflows: ['Release next', 'Release v9'] | |
# types: [completed] | |
# branches: [main, v9] | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build_docs: | |
# if: github.repository_owner == 'pnp' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions/checkout@v4 | |
with: | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. Default: 1 | |
fetch-depth: 0 | |
- name: Cache node modules | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
**/docs/node_modules | |
key: docs_node_modules-${{ hashFiles('**/docs/package-lock.json') }} | |
- name: Restore dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: npm ci | |
working-directory: docs | |
- name: Tagging new version | |
working-directory: docs | |
run: | | |
git checkout v9 | |
npm run docusaurus docs:version 9.0.0 | |
git checkout main | |
- name: Build docs | |
run: npm run build | |
working-directory: docs | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: docs/build | |
deploy_docs: | |
#if: github.repository_owner == 'pnp' | |
needs: build_docs | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |