Skip to content

Commit

Permalink
single quotes? (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyqa authored Dec 14, 2022
1 parent 6f41834 commit 54dc299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/release_to_prod/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
shell: bash

- name: Do some release stuff for main
if: github.event.target_commitish == "main"
if: github.event.target_commitish == 'main'
run: |
echo "this is the release script for main"
shell: bash
Expand All @@ -28,7 +28,7 @@ runs:
shell: bash

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

0 comments on commit 54dc299

Please sign in to comment.