Skip to content

Commit c792f35

Browse files
feat: add beta releases
1 parent d165f66 commit c792f35

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- master
6+
- beta
67

78
concurrency:
89
group: ${{ github.workflow }}-${{ github.ref }}
@@ -55,7 +56,8 @@ jobs:
5556
run: npm --workspaces test
5657

5758
- name: Release
58-
run: npx multi-semantic-release
59+
run: |
60+
npx multi-semantic-release
5961
env:
6062
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6163
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44
"workspaces": [
55
"packages/*"
66
],
7+
"release": {
8+
"branches": [
9+
"master",
10+
{
11+
"name": "beta",
12+
"prerelease": true
13+
}
14+
]
15+
},
716
"repository": {
817
"type": "git",
918
"url": "git+https://github.com/BitGo/wasm-miniscript.git"

0 commit comments

Comments
 (0)