Skip to content

feat: add general qol improvments (#4) #5

feat: add general qol improvments (#4)

feat: add general qol improvments (#4) #5

Workflow file for this run

name: "Deploy Site"
on:
push:
branches:
- main
jobs:
deploy:
name: "Deploy Site"
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
registry-url: "https://npm.pkg.github.com"
- run: yarn install
- run: yarn build
- run: yarn export
- uses: actions/upload-pages-artifact@v2
with:
path: ./out
- uses: actions/deploy-pages@v3
id: deployment