Skip to content

Commit

Permalink
Fix version extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
Klocman committed Mar 5, 2023
1 parent c63ae89 commit b3253f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/winget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
id: get-version
run: |
# Finding the version from release name
$VERSION = '${{ github.event.release.name }}'.Replace('v', $Null) + '.0.0'
$VERSION = '${{ github.event.release.tag_name }}'.Replace('v', $Null) + '.0.0'
echo "::set-output name=version::$VERSION"
shell: pwsh
- uses: vedantmgoyal2009/winget-releaser@v2
Expand Down

0 comments on commit b3253f9

Please sign in to comment.