-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (49 loc) · 1.4 KB
/
publish.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
name: Publish @wasm-miniscript
on:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
name: Publish Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
- name: Install wasm-pack
run: |
cargo install wasm-pack
- name: Build Info
run: |
echo "node $(node --version)"
echo "npm $(npm --version)"
echo "rust $(rustup --version)"
git --version
- name: Configure NPM
run: |
echo "workspaces-update = false" >> .npmrc
echo "@bitgo:registry=https://registry.npmjs.org" >> .npmrc
echo "//registry.npmjs.org/:always-auth=true" >> .npmrc
- name: Install Packages
run: npm ci --workspaces --include-workspace-root
- name: build packages
run: npm --workspaces run build
- name: Unit Test
run: npm --workspaces test
- name: Release
run: npx multi-semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}