Skip to content

Commit

Permalink
fix(ci): correct version variable in release workflow
Browse files Browse the repository at this point in the history
Replaced the 'version' key with 'tag_name' to properly format
the version string in the release workflow.
  • Loading branch information
steebchen committed Feb 13, 2025
1 parent 5e1f3b9 commit cd50578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
- id: version_info
run: |
cargo install cargo-get
echo "version=$(cargo get workspace.package.version)" >> $GITHUB_OUTPUT
echo "tag_name=v$(cargo get workspace.package.version)" >> $GITHUB_OUTPUT
- name: Display structure of downloaded files
run: ls -R artifacts
- run: gh release create ${{ steps.version_info.outputs.version }} ./artifacts/*.gz --generate-notes --draft
Expand Down

0 comments on commit cd50578

Please sign in to comment.