We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1adf82d commit 3efe95fCopy full SHA for 3efe95f
.github/workflows/release.yml
@@ -1,11 +1,16 @@
1
name: Release
2
on:
3
- workflow_dispatch:
+ workflow_run:
4
+ workflows:
5
+ - "Node.js CI"
6
branches:
- - beta
7
+ - master
8
+ types:
9
+ - completed
10
11
jobs:
12
release:
13
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
14
15
runs-on: ubuntu-latest
16
steps:
.releaserc
@@ -1,8 +1,7 @@
{
"release": {
"branches": [
- {"name": "master"},
- {"name": "beta", "channel": "beta", "prerelease": "beta"}
+ {"name": "master"}
],
"tagFormat": "v${version}"
},
0 commit comments