Skip to content

Deploy Docusaurus with GitHub Pages #913

Deploy Docusaurus with GitHub Pages

Deploy Docusaurus with GitHub Pages #913

Workflow file for this run

name: Deploy Docusaurus with GitHub Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ['develop']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Update docs nightly
schedule:
- cron: '0 12 * * *'
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
actions: read
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
# Use same version of node for netlify and CI build
node-version-file: '.nvmrc'
cache: 'npm'
- name: Restore cache
uses: actions/cache@v4
with:
path: |
.docusaurus
node_modules/.cache
key: ${{ runner.os }}-docusaurus-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}-${{ hashFiles('**/*.md', '**/*.mdx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-docusaurus-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-docusaurus-
- run: npm ci
- name: Build 🏗️
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build
# Deployment job
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@v4