Skip to content

chore: apply automated updates #131

chore: apply automated updates

chore: apply automated updates #131

Workflow file for this run

name: gh-pages
on:
push:
branches:
- main
- gh-pages
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install
- run: pnpm build
env:
NITRO_PRESET: service-worker
NITRO_APP_BASE_URL: /nitro-deploys/
- uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: ".output/public"
CLEAN: true