Skip to content

Merge pull request #59 from eleme/feature/support_alipay_axml_functio… #21

Merge pull request #59 from eleme/feature/support_alipay_axml_functio…

Merge pull request #59 from eleme/feature/support_alipay_axml_functio… #21

Workflow file for this run

name: Build Website
on:
push:
paths:
- "website/**"
branches:
- main
jobs:
build-and-deploy:
# 服务器环境:最新版 Ubuntu
runs-on: ubuntu-latest
steps:
# 拉取代码
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install pnpm
run: npm i pnpm -g
- run: pnpm install --filter=./website
- run: cd website && pnpm build
# 部署到 GitHub Pages
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: website/build