From 998bd236f81a634c38c39f937bde1e943cd51cb9 Mon Sep 17 00:00:00 2001 From: kieran Date: Thu, 26 Dec 2024 14:24:01 +0000 Subject: [PATCH] fix: add nsite workflow --- .github/workflows/nsite.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/nsite.yml diff --git a/.github/workflows/nsite.yml b/.github/workflows/nsite.yml new file mode 100644 index 0000000..5383acb --- /dev/null +++ b/.github/workflows/nsite.yml @@ -0,0 +1,30 @@ +name: Deploy nsite +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "yarn" + + - name: Install Dependencies + run: yarn install + + - name: Build + run: yarn build + + - name: Redirect 404 to Index for SPA + run: cp dist/index.html dist/404.html + + - name: Deploy nsite + run: npx -y nsite-cli upload dist --verbose --purge --privatekey ${{ secrets.NSITE_KEY }} \ No newline at end of file