generated from greasify/vite-userscript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 900 Bytes
/
gh-pages.yml
File metadata and controls
40 lines (35 loc) · 900 Bytes
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
name: gh-pages
on:
push:
branches:
- master
jobs:
cache-and-install:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache PNPM
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Installing packages
uses: pnpm/action-setup@v2.2.2
with:
version: 7.x.x
run_install: |
- args: [--frozen-lockfile]
- name: Build
run: pnpm build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages
folder: dist