feat: upgrade to v3 #6
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: Publish Pages | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
[ | |
"src/**/*.js", | |
"src/**/*.css", | |
"src/**/*.html", | |
"src/**/*.svg", | |
"src/**/*.json", | |
"src/**/*.ts", | |
"src/**/*.tsx", | |
"src/**/*.sh", | |
] | |
workflow_dispatch: | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ">=18.18" | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: ./dist | |
single-commit: true |