From 93765da6a3de40887ab2630ab813fd65dea05263 Mon Sep 17 00:00:00 2001 From: Byounghern Kim Date: Thu, 3 Oct 2024 21:30:25 +0900 Subject: [PATCH] misc: workflow for docs --- .github/workflows/deploy-docs.yml | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) 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..c59c235 --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,39 @@ +name: Deploy Docs + +on: + push: + branches: + - main + - docs/deploy + +env: + PUBLISH_DIR: ./docs/dist + +jobs: + build-and-deploy: + 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 }}