-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (67 loc) · 1.88 KB
/
pages.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
name: github-pages
run-name: GitHub Pages
on:
# TODO switch to main
# pull_request:
# branches: [main]
# types:
# - closed
push:
branches: [ci/gh-pages]
jobs:
build-ui:
name: Build UI
# if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Dist
id: cache-dist
uses: actions/cache@v4
with:
path: dist
key: ${{ runner.os }}-cargo-${{ hashFiles('./**') }}
- name: Cache Dependencies
if: steps.cache-dist.outputs.cache-hit != 'true'
id: cache-target
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('./Cargo.lock') }}
- name: Install wasm32-unknown-unknown Target
if: steps.cache-dist.outputs.cache-hit != 'true'
run: rustup target add wasm32-unknown-unknown
- name: Install Trunk
if: steps.cache-dist.outputs.cache-hit != 'true'
uses: jetli/[email protected]
- name: Build UI
if: steps.cache-dist.outputs.cache-hit != 'true'
run: |
trunk --verbose build --release --features demo
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ui/dist/
deploy-pages:
name: Deploy Pages
if: github.ref_name == 'main'
needs: build-pages
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