We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c8e0bd commit c892dd1Copy full SHA for c892dd1
1 file changed
.github/workflows/deploy.yml
@@ -11,6 +11,7 @@ on:
11
push:
12
branches:
13
- main
14
+ - chore/180
15
workflow_dispatch:
16
17
permissions:
@@ -51,7 +52,7 @@ jobs:
51
52
53
makeTagAndRelease:
54
needs: test
- if: github.ref == 'refs/heads/main' && github.event_name == 'push'
55
+ if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/chore/180') && github.event_name == 'push'
56
runs-on: ubuntu-latest
57
outputs:
58
tag_name: ${{ steps.create_tag.outputs.new_tag }}
0 commit comments