mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
36 lines
710 B
YAML
36 lines
710 B
YAML
|
|
name: ray-template documents deploy
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Node.js 18.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
name: Install pnpm
|
|
with:
|
|
version: 8
|
|
run_install: false
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Pnpm build
|
|
run: pnpm build
|
|
|
|
- name: Deploy to dist branch
|
|
uses: JamesIves/github-pages-deploy-action@4.1.4
|
|
with:
|
|
branch: dist
|
|
folder: dist/production-dist
|