Skip to content

finally fix hover effects #19

finally fix hover effects

finally fix hover effects #19

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm build
- uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./dist
force_orphan: true
commit_message: "Deploy Astro site to GitHub Pages"