Skip to content

Commit

Permalink
fix: fix condition for publish step
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed Mar 31, 2024
1 parent 4595d8b commit 15b1ad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ runs:

# Run normal publishing if releasing is not enabled or if no release was created
- name: Publish with Gradle
if: ${{ inputs.release != 'true' || steps.release.outputs.new_release_published == 'false' ) }}
if: ${{ inputs.release != 'true' || steps.release.outputs.new_release_published == 'false' }}
env:
# For Gradle execution
# FIXME to test - can these be passed from the caller of the composite action?
Expand Down

0 comments on commit 15b1ad4

Please sign in to comment.