From ea8bd316dea1b932696c0c4f75f5fc9aeaa0019b Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 26 Apr 2024 11:49:25 +0530 Subject: [PATCH] chore(actions): add docs action Includes a GitHub Action to automatically deploy a documentation site on commits. --- .github/workflows/docs.yaml | 46 +++++++++++++++++++++++++++++++++++++ 1 file changed, 46 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 0000000..a50c9ee --- /dev/null +++ b/.github/workflows/docs.yaml @@ -0,0 +1,46 @@ +name: Docs + +on: + push: + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install PNPM + uses: pnpm/action-setup@v3 + + - name: Install Node + uses: actions/setup-node@v4.0.2 + with: + cache: "pnpm" + + - name: Install Moonwave CLI + run: pnpm i -g moonwave + + - name: Build static site + run: alias npm=pnpm && moonwave build + + - name: Setup GitHub pages + uses: actions/configure-pages@v3 + + - name: Upload repository artifact + uses: actions/upload-pages-artifact@v2 + with: + path: './build' + + - name: Deploy to GitHub pages + id: deployment + uses: actions/deploy-pages@v2