From 96c59f5fa2d289a5470cd5744abd8adfd351dc23 Mon Sep 17 00:00:00 2001 From: Viki Date: Thu, 13 Jun 2024 17:54:37 +0800 Subject: [PATCH] docs: add action config --- .github/workflows/docs.yaml | 51 +++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/docs.yaml diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml new file mode 100644 index 00000000..88d1ba50 --- /dev/null +++ b/.github/workflows/docs.yaml @@ -0,0 +1,51 @@ +name: Deploy docs + +on: + push: + branches: + - "main" + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: 'pages' + cancel-in-progress: false + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version-file: '.node-version' + + - name: Use pnpm + uses: pnpm/action-setup@v3 + with: + version: 8 + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Built docs + run: pnpm run docs:build + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: './website/build' + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4