Skip to content

Merge pull request #22 from chenyu-01/Y #43

Merge pull request #22 from chenyu-01/Y

Merge pull request #22 from chenyu-01/Y #43

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches: [main]
jobs:
build-and-deploy:
if: ${{ startsWith(github.event.head_commit.message, '#DEPLOY') }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '21' # Specify Node.js version
- name: Install and Build
run: | # Run commands in the working directory
npm install
npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.