-
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (80 loc) · 1.98 KB
/
publish.yaml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
on:
push:
branches:
- master
pull_request:
env:
STORE_PATH: ''
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [
ubuntu-latest,
# windows-latest,
# macos-latest,
]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
steps:
# Setup
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install PNPM
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
# Cache
- name: Set PNPM Store Path
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup PNPM Cache
uses: actions/cache@v4
with:
path: ${{env.STORE_PATH}}
key: ${{runner.os}}-pnpm-store-${{hashFiles('**/pnpm-lock.yaml')}}
restore-keys: ${{runner.os}}-pnpm-store-
# Init
- name: Install Dependencies
run: pnpm install
# Docs
- name: Build Docs
run: pnpm docs:build
- name: Upload to GitHub Pages
uses: actions/upload-pages-artifact@v1
with:
path: output/docs
# Artifacts
# - name: Upload Output
# uses: actions/upload-artifact@v2
# with:
# name: output
# path: output
deploy:
if: github.ref == 'refs/heads/master'
needs: build
runs-on: ubuntu-latest
concurrency: ci-${{github.ref}}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.gh_pages_deploy.outputs.page_url}}
steps:
# Docs
- name: Deploy to GitHub Pages
id: gh_pages_deploy
uses: actions/deploy-pages@v2
# Artifacts
# - name: Download Output
# uses: actions/download-artifact@v2
# with:
# name: output