Skip to content

fix broken links

fix broken links #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- docs
jobs:
build:
name: Build Docusaurus 🦖
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Build Docusaurus site
run: npm run build
- name: Deploy to GitHub Pages
uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
name: Deploy To GitHub Pages 🚀
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4