Skip to content

Patch % sort options (#156) #98

Patch % sort options (#156)

Patch % sort options (#156) #98

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm ci
- name: build
run: npm run build
- name: Add CNAME to site
run: echo "boajs.dev" > ./build/CNAME
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./build
github_token: ${{ secrets.GITHUB_TOKEN }}