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 6f41834 commit 54dc299Copy full SHA for 54dc299
.github/actions/release_to_prod/action.yml
@@ -15,7 +15,7 @@ runs:
15
shell: bash
16
17
- name: Do some release stuff for main
18
- if: github.event.target_commitish == "main"
+ if: github.event.target_commitish == 'main'
19
run: |
20
echo "this is the release script for main"
21
@@ -28,7 +28,7 @@ runs:
28
29
30
- name: Warn about other branches
31
- if: github.event.target_commitish != "main"
+ if: github.event.target_commitish != 'main'
32
33
echo "Can only release main or hotfix"
34
0 commit comments