Skip to content

Commit

Permalink
Merge #457
Browse files Browse the repository at this point in the history
457: fix: if condition release latest main r=1010Tom a=1010Tom

The problem seems to have been that we mixed syntax: `{}` and without brackets. 

Co-authored-by: 1010Tom <1010Tom@mailx.site>
  • Loading branch information
bors[bot] and 1010Tom authored Apr 18, 2023
2 parents fa0b292 + 3f23fb7 commit 9e61d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deliverables-push-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
build_and_release_ios_app_for_latest_main:
needs: changes
if: ${{ needs.changes.outputs.ios-app == 'true' }} && "!startsWith(github.event.head_commit.message, 'Release version')"
if: needs.changes.outputs.ios-app == 'true' && "!startsWith(github.event.head_commit.message, 'Release version')"
permissions:
packages: write
contents: read
Expand Down

0 comments on commit 9e61d72

Please sign in to comment.