-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (40 loc) · 1006 Bytes
/
pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: github-pages
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node env
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
env:
NITRO_PRESET: github_pages
- name: Upload Output
uses: actions/upload-pages-artifact@v3
with:
# change to ./.output/public when really ready to deploy
path: ./.output/public
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github_pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4