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 4896cd8 commit 96ad359Copy full SHA for 96ad359
.github/workflows/build.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- master
7
+ - beta
8
pull_request:
9
10
jobs:
@@ -67,7 +68,7 @@ jobs:
67
68
name: Release
69
runs-on: ubuntu-latest
70
needs: [lint, test]
- if: github.event_name == 'push' && github.ref == 'refs/heads/master'
71
+ if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta')
72
steps:
73
- uses: actions/checkout@v2
74
with:
0 commit comments