Skip to content

Commit

Permalink
Parentheses around condition
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-martinsmith committed Aug 21, 2024
1 parent dd8a796 commit 9f426cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
## Generate a Release and Tag in git
release:
name: Create GitHub Release
if: needs.setup.outputs.should_release == 'true' && success()
if: (needs.setup.outputs.should_release == 'true') && success()

needs:
- setup
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
## Publish to NuGet
publish:
name: Publish to NuGet
if: needs.setup.outputs.should_publish == 'true' && success()
if: (needs.setup.outputs.should_publish == 'true') && success()

needs:
- setup
Expand Down

0 comments on commit 9f426cd

Please sign in to comment.