We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d165f66 commit c792f35Copy full SHA for c792f35
.github/workflows/publish.yml
@@ -3,6 +3,7 @@ on:
3
push:
4
branches:
5
- master
6
+ - beta
7
8
concurrency:
9
group: ${{ github.workflow }}-${{ github.ref }}
@@ -55,7 +56,8 @@ jobs:
55
56
run: npm --workspaces test
57
58
- name: Release
- run: npx multi-semantic-release
59
+ run: |
60
+ npx multi-semantic-release
61
env:
62
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package.json
@@ -4,6 +4,15 @@
"workspaces": [
"packages/*"
],
+ "release": {
+ "branches": [
+ "master",
10
+ {
11
+ "name": "beta",
12
+ "prerelease": true
13
+ }
14
+ ]
15
+ },
16
"repository": {
17
"type": "git",
18
"url": "git+https://github.com/BitGo/wasm-miniscript.git"
0 commit comments