From 077af4fd844cb8580e08f2f4a62ce2ca9536c0ac Mon Sep 17 00:00:00 2001 From: Shibi Suriya Date: Mon, 25 Sep 2023 22:46:05 +0530 Subject: [PATCH] added gh pages deployment --- .github/workflows/deploy.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..3d4b306 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,32 @@ +name: Build and Deploy Docs + +on: + push: + branches: + - main # Adjust this to the main branch name if it's different + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + submodules: recursive + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: 18 # Adjust to the desired Node.js version + + - name: Install dependencies and build + run: | + yarn install + yarn run build + + - name: Deploy to gh-pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GH_DEPLOY }} + publish_dir: ./dist # Adjust the path to the build output directory