Skip to content

last few link fixes

last few link fixes #9

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Build
run: |
npm i
npm run build
# see https://www.seanmcp.com/articles/fix-missing-astro-files-on-github-pages/
- name: Add Jekyll ignore
run: touch ./dist/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
clean: true
folder: ./dist