Skip to content

Fixed bug in the mapping #40

Fixed bug in the mapping

Fixed bug in the mapping #40

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
paths:
- docs/site/**
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: docs/site/package-lock.json
- name: Install dependencies
working-directory: docs/site
run: npm ci
- name: Build website
working-directory: docs/site
run: npm run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/site/build
deploy:
name: Deploy to GitHub Pages
needs: build
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
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