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 7ac10fb commit 0166bb3Copy full SHA for 0166bb3
.github/workflows/release.yaml
@@ -3,6 +3,7 @@ on:
3
push:
4
branches:
5
- master
6
+ - beta
7
8
jobs:
9
lint-test-build:
@@ -64,7 +65,7 @@ jobs:
64
65
run: npm run release
66
67
docs:
- if: github.repository == 'kaciakmaciak/react-query-subscription'
68
+ if: github.repository == 'kaciakmaciak/react-query-subscription' && github.ref == 'refs/heads/master'
69
name: 'Publish Docs'
70
runs-on: ubuntu-20.04
71
.releaserc.json
@@ -1,5 +1,8 @@
1
{
2
- "branches": ["master"],
+ "branches": [
+ { "name": "master" },
+ { "name": "beta", "channel": "beta", "prerelease": true }
+ ],
"preset": "conventionalcommits",
"presetConfig": {
"types": [
0 commit comments