From 998b07cdd735a85fdb821f03953ccc9d72798c8a Mon Sep 17 00:00:00 2001 From: yun Date: Wed, 13 Dec 2023 11:05:48 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=B7=BB=E5=8A=A0document=20deploy?= =?UTF-8?q?=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 From e9caa52401b140e862ccbee5c8c19b5348d63d04 Mon Sep 17 00:00:00 2001 From: yun Date: Wed, 13 Dec 2023 11:08:53 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8Ddocs-deploy.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs-deploy.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs-deploy.yaml b/.github/workflows/docs-deploy.yaml index e69228b5..f4b80a2a 100644 --- a/.github/workflows/docs-deploy.yaml +++ b/.github/workflows/docs-deploy.yaml @@ -4,6 +4,7 @@ name: ray-template documents deploy on: [push, pull_request] jobs: + build-and-deploy: steps: - name: Checkout uses: actions/checkout@v3 From c67f5d6734e0ffb8564222ab51f4b31bd92b2afd Mon Sep 17 00:00:00 2001 From: yun Date: Wed, 13 Dec 2023 11:09:59 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8Ddocs-deploy.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs-deploy.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docs-deploy.yaml b/.github/workflows/docs-deploy.yaml index f4b80a2a..e2831d7f 100644 --- a/.github/workflows/docs-deploy.yaml +++ b/.github/workflows/docs-deploy.yaml @@ -5,6 +5,8 @@ on: [push, pull_request] jobs: build-and-deploy: + runs-on: ubuntu-latest + steps: - name: Checkout uses: actions/checkout@v3