Skip to content

Commit

Permalink
deploy to nsite
Browse files Browse the repository at this point in the history
  • Loading branch information
hzrd149 committed Oct 6, 2024
1 parent 510b6be commit 9418d1c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/nsite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deploy nsite
on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4

- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install Dependencies
run: pnpm install

- name: Build
run: pnpm 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 --purge --privatekey ${{ secrets.NSITE_KEY }}

0 comments on commit 9418d1c

Please sign in to comment.