mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
commit
e7733fa105
35
.github/workflows/docs-deploy.yaml
vendored
Normal file
35
.github/workflows/docs-deploy.yaml
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user