Upgrade all GHA runner OSes to latest stable versions #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Custom Github Pages Build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js specified in the '.nvmrc' file | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: Install pnpm | |
run: npm i -gf "pnpm@$(node -p 'require("./package.json").engines.pnpm')" && pnpm -v | |
- name: Install and Build 🔧 | |
run: | | |
pnpm i | |
pnpm run export | |
- uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: out | |
branch: gh-pages |