Skip to content

Workflow file for this run

on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
pages:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./gatelogue-client
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 22
- run: pnpm install --no-frozen-lockfile
- run: pnpm run build
- run: cd dist; echo > .nojekyll; cd ..
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./gatelogue-client/dist