Skip to content

feature/DF-861: Geospatial component (#321) #8

feature/DF-861: Geospatial component (#321)

feature/DF-861: Geospatial component (#321) #8

Workflow file for this run

name: Deploy Docusaurus to GitHub Pages
on:
push:
branches:
- main
paths:
- 'docs/**'
- 'scripts/generate-schema-docs.js'
- 'static/**'
- 'docusaurus.config.cjs'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/deploy-docs.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Install dependencies
run: npm ci
- name: Build Docusaurus
run: npm run docs:build:all
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./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@v4