From 998b07cdd735a85fdb821f03953ccc9d72798c8a Mon Sep 17 00:00:00 2001 From: yun Date: Wed, 13 Dec 2023 11:05:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0document=20deploy=E7=9A=84ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs-deploy.yaml | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/docs-deploy.yaml diff --git a/.github/workflows/docs-deploy.yaml b/.github/workflows/docs-deploy.yaml new file mode 100644 index 00000000..e69228b5 --- /dev/null +++ b/.github/workflows/docs-deploy.yaml @@ -0,0 +1,32 @@ + +name: ray-template documents deploy + +on: [push, pull_request] + +jobs: + 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