Skip to content

Update README.md

Update README.md #22

Workflow file for this run

name: GH Pages
on:
push:
# tags:
# - v*
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
- run: npm install
# - run: touch docs/.nojekyll
- run: npm run build -- --base=/frustum/
- run: touch dist/.nojekyll
- uses: actions/upload-pages-artifact@v1
# with: { path: docs/ }
with: { path: dist }
deploy:
needs: build
permissions:
pages: write
id-token: write
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@v1