-
Notifications
You must be signed in to change notification settings - Fork 0
112 lines (88 loc) · 3.24 KB
/
release.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: Deploy — [Demo]
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout Repo
uses: actions/checkout@v3
# with:
# ref: ${{ github.ref }}
# ————————————————————————————————————————————————————————————————————————
- name: Cache Rust, Cargo installations
# uses: actions/cache@v3
uses: actions/cache@v3
with:
path: |
~/.rustup/toolchains
~/.rustup/update-hashes
~/.rustup/settings.toml
key: toolchain-${{ hashFiles('rust-toolchain') }}
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
# Not cached ?
- name: Install Wasm-pack
uses: jetli/[email protected]
with:
version: 'latest'
- name: Install Rust dependencies
uses: actions-rs/cargo@v1
with:
command: install
args: rsw
# ————————————————————————————————————————————————————————————————————————
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
# ————————————————————————————————————————————————————————————————————————
- name: Setup PNPM 7
uses: pnpm/[email protected]
with:
version: 7.9.0
run_install: false
- name: Get PNPM store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- name: Setup PNPM cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
# ————————————————————————————————————————————————————————————————————————
- name: Install Node dependencies
# `NODE_ENV=production` to exclude dev. dependencies
run: pnpm install --no-frozen-lockfile
- name: Build Crates
run: rsw build
- name: Build Astro Website
run: pnpm build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-20.04
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1