Skip to content

Commit

Permalink
Simplified condition
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-martinsmith committed Aug 21, 2024
1 parent ee76ce1 commit 5ab7e14
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'

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'

needs:
- setup
Expand Down

0 comments on commit 5ab7e14

Please sign in to comment.