Skip to content

Commit 54dc299

Browse files
authored
single quotes? (#10)
1 parent 6f41834 commit 54dc299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/release_to_prod/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
shell: bash
1616

1717
- name: Do some release stuff for main
18-
if: github.event.target_commitish == "main"
18+
if: github.event.target_commitish == 'main'
1919
run: |
2020
echo "this is the release script for main"
2121
shell: bash
@@ -28,7 +28,7 @@ runs:
2828
shell: bash
2929

3030
- name: Warn about other branches
31-
if: github.event.target_commitish != "main"
31+
if: github.event.target_commitish != 'main'
3232
run: |
3333
echo "Can only release main or hotfix"
3434
shell: bash

0 commit comments

Comments
 (0)