From 4aaaf1a64313fffb59fcdbaf1bc0094966b3ea85 Mon Sep 17 00:00:00 2001 From: Byounghern Kim Date: Thu, 3 Oct 2024 21:35:43 +0900 Subject: [PATCH] misc: deploy astro docs (#5) * misc: docs build command * misc: workflow for docs * refactor: rename workflow job * chore: remove test workflow target --- .github/workflows/deploy-docs.yml | 38 +++++++++++++++++++++++++++++++ package.json | 3 ++- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/deploy-docs.yml diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml new file mode 100644 index 0000000..2d16b5c --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,38 @@ +name: Deploy Docs + +on: + push: + branches: + - main + +env: + PUBLISH_DIR: ./docs/dist + +jobs: + build-and-deploy-docs: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 9 + + - name: Install dependencies + run: pnpm install + + - name: Build docs + run: pnpm build:docs + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ${{ env.PUBLISH_DIR }} diff --git a/package.json b/package.json index 7e5e9b4..44b1cdd 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "dev": "npx astro dev --root ./docs", "build": "tsc -b && vite build", "lint": "eslint .", - "test": "pnpm run dev & playwright test; kill $!" + "test": "pnpm run dev & playwright test; kill $!", + "build:docs": "npx astro build --root ./docs" }, "repository": { "type": "git",