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 e48be33 commit 7e3e008Copy full SHA for 7e3e008
.github/workflows/node.js.yml
@@ -87,7 +87,7 @@ jobs:
87
- run: yarn lint
88
89
release:
90
- if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' }}
+ if: ${{ github.event_name == 'push' && (github.event.ref == 'refs/heads/main' || github.event.ref == 'refs/heads/v4') }}
91
name: Release new version
92
needs: [lint, test-node, test-os]
93
runs-on: ubuntu-latest
package.json
@@ -114,7 +114,8 @@
114
},
115
"release": {
116
"branches": [
117
- "main"
+ "main",
118
+ "v4"
119
]
120
121
"resolutions": {
0 commit comments