Skip to content

Commit

Permalink
fix(release): use correct value for outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Dec 10, 2024
1 parent 0962b6e commit efa4e40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ inputs:
outputs:
new-release-published:
description: Whether a new release was published
value: ${{ steps.release.outputs.new_release_published }}
value: ${{ steps.release.outputs.new-release-published }}
new-release-version:
description: Version of the new release
value: ${{ steps.release.outputs.new_release_version || steps.version.outputs.new_release_version }}
value: ${{ steps.release.outputs.new-release-version || steps.version.outputs.new-release-version }}
new-release-major-version:
description: Major version of the new release
value: ${{ steps.release.outputs.new_release_major_version }}
value: ${{ steps.release.outputs.new-release-major-version }}
runs:
using: composite
steps:
Expand Down

0 comments on commit efa4e40

Please sign in to comment.