Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ concurrency:
jobs:
build:
name: Build
if: ${{ github.event.repository.fork == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5

- uses: actions/setup-node@v6
with:
node-version: 24
Expand All @@ -41,6 +43,7 @@ jobs:
- name: Install dependencies
run: npm ci --ignore-scripts
working-directory: site

- name: Build site
run: npm run build
working-directory: site
Expand All @@ -63,4 +66,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4
Loading