Skip to content

Removing id and permission as causing workflow build error #39

Removing id and permission as causing workflow build error

Removing id and permission as causing workflow build error #39

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout main docs repo
uses: actions/checkout@v4
- name: Setup Docusaurus
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: yarn
- name: Build website
run: |
yarn install --frozen-lockfile
yarn build
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4