-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (100 loc) · 2.87 KB
/
cd.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: CD
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run tests
run: cargo test
build-publish-wasm:
runs-on: ubuntu-latest
strategy:
matrix:
crates: [engine, common-ui]
needs: [test]
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install wasm-pack
uses: jetli/[email protected]
with:
version: latest
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build and pack wasm
run: |
wasm-pack build \
--scope '${{ github.repository_owner }}' \
--target web \
'crates/${{ matrix.crates }}' \
--features wasm
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
- name: Publish npm package
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd 'crates/${{ matrix.crates }}/pkg'
# no option to customize publish config in wasm-pack
SHA_7="$(expr substr $GITHUB_SHA 1 7)"
VERSION="$(jq -r '.version' package.json)"
REGISTRY='{"publishConfig":{"registry":"https://npm.pkg.github.com"}}'
echo "$(jq ". |= . + $REGISTRY" package.json)" > package.json
cat package.json | jq
npm version "${VERSION}-git.${SHA_7}"
cat package.json | jq
npm publish
build-publish-frontend:
runs-on: ubuntu-latest
needs: [build-publish-wasm]
permissions:
contents: write
packages: read
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BASE_PATH: "/${{ github.event.repository.name }}"
run: |
cd frontend
echo '//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}' >> .npmrc
npm install
npm run build
- name: Deploy artifacts
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./frontend/build
publish_branch: gh-pages