Skip to content

Commit

Permalink
fix(prerelease): fixes the prerelease outputs
Browse files Browse the repository at this point in the history
Fixes a typo with prerelease outputs to get the correct values back.
  • Loading branch information
greenkiwi committed Sep 22, 2023
1 parent ca30dc7 commit 663c068
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prerelease-msvc/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ inputs:
outputs:
new-release-published:
description: Whether a new release was published
value: ${{ steps.release.outputs.new_release_published }}
value: ${{ steps.prerelease.outputs.new-release-published }}
new-release-version:
description: Version of the new release
value: ${{ steps.release.outputs.new_release_version }}
value: ${{ steps.prerelease.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.prerelease.outputs.new-release-major_version }}
image-name:
description: Docker image name
value: ${{ steps.build-docker.outputs.image-name }}
Expand Down

0 comments on commit 663c068

Please sign in to comment.