-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (42 loc) · 1.14 KB
/
deploy-to-github-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
name: Deploy to github pages
on: [push, pull_request]
permissions:
contents: write # to fetch code (actions/checkout)
jobs:
build:
strategy:
fail-fast: false
matrix:
node:
- "20"
platform:
- ubuntu-latest
name: "${{matrix.platform}} / Node.js ${{ matrix.node }}"
runs-on: ${{matrix.platform}}
steps:
- name: Configure Git
run: |
git config --global core.autocrlf false
git config --global user.name "BaboonKing"
git config --global user.email "[email protected]"
- name: Checkout Commit
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: pnpm install
run: pnpm install
- name: Audit
run: pnpm audit
- name: Build
run: pnpm build --base=/grays/
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
folder: dist