Skip to content

fix(style): prevent navigation menu links from occasionally turning blue #179

fix(style): prevent navigation menu links from occasionally turning blue

fix(style): prevent navigation menu links from occasionally turning blue #179

Workflow file for this run

name: github pages
on:
push:
branches:
- main
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 12
steps:
- uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- name: Install
run: bun install --frozen-lockfile
- name: Check (typecheck, lint, test)
run: bun run ci
- name: Build
run: |
bun run build
cp CNAME dist/
cp .nojekyll dist/
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist