Skip to content

Commit 4c5855b

Browse files
authored
Merge pull request #60507 from Expensify/andrew-fix-prod-release-creation
Fix `false` included in the release create command
2 parents 5debcf6 + ee6ee80 commit 4c5855b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ jobs:
599599

600600
- name: 🚀 Create release 🚀
601601
run: |
602-
gh release create ${{ needs.prep.outputs.TAG }} ${{ github.ref == 'refs/heads/staging' && '--prerelease' }} \
602+
gh release create ${{ needs.prep.outputs.TAG }} ${{ github.ref == 'refs/heads/staging' && '--prerelease' || '' }} \
603603
--repo ${{ github.repository }} \
604604
--title ${{ needs.prep.outputs.TAG }} \
605605
--generate-notes \

0 commit comments

Comments
 (0)