Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
dhelonious committed Aug 23, 2024
1 parent 32f95f8 commit f134db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
pattern: "*.snap"
merge-multiple: true
- name: create new release
if: ${{ inputs.tag.is_provided == 'false' }}
if: ${{ inputs.tag == "" }}
uses: ncipollo/release-action@v1
with:
bodyFile: RELEASE.md
Expand All @@ -21,7 +21,7 @@ runs:
skipIfReleaseExists: true
artifactErrorsFailBuild: true
- name: update existing release
if: ${{ inputs.tag.is_provided == 'true' }}
if: ${{ inputs.tag != "" }}
uses: ncipollo/release-action@v1
with:
tag: ${{ inputs.tag }}
Expand Down

0 comments on commit f134db2

Please sign in to comment.