Skip to content

content(home): make the about-me line solutions-first (#21) #62

content(home): make the about-me line solutions-first (#21)

content(home): make the about-me line solutions-first (#21) #62

Workflow file for this run

name: Deploy Astro to GitHub Pages
on:
push:
branches:
- release
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Install Node.js
uses: actions/setup-node@v6
with:
# Build Node version — single-sourced from .node-version (also read by fnm).
node-version-file: .node-version
- name: Setup pnpm
run: npm install -g pnpm@10.33.3
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Astro
run: pnpm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist