From e3f2a77d2cb4157cb3f793bec621bba3f1d5531d Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 8 Mar 2024 09:52:44 +0530 Subject: [PATCH] Add workflow (sans the deployment) Ref: https://vitepress.dev/reference/cli --- .github/workflows/docs-deploy.yml | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/docs-deploy.yml diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml new file mode 100644 index 000000000..5a9dac91d --- /dev/null +++ b/.github/workflows/docs-deploy.yml @@ -0,0 +1,35 @@ +name: "Deploy (docs)" + +on: + # Run on every push to main that changes docs/ + push: + branches: [main] + paths: + - "docs/**" + - ".github/workflows/web-lint.yml" + # Also allow manually running the action + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + defaults: + run: + working-directory: docs + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup node and enable yarn caching + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "yarn" + cache-dependency-path: "docs/yarn.lock" + + - name: Install dependencies + run: yarn install + + - name: Build production site + # Will create docs/.vitepress/dist + run: yarn build