Skip to content

Commit 596f96d

Browse files
committed
fix(release): correct output variable name in workflow
Updated the release workflow to use 'version' instead of 'tag_name' as the output variable. Ensures proper version handling during releases.
1 parent cd50578 commit 596f96d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
- id: version_info
179179
run: |
180180
cargo install cargo-get
181-
echo "tag_name=v$(cargo get workspace.package.version)" >> $GITHUB_OUTPUT
181+
echo "version=v$(cargo get workspace.package.version)" >> $GITHUB_OUTPUT
182182
- name: Display structure of downloaded files
183183
run: ls -R artifacts
184184
- run: gh release create ${{ steps.version_info.outputs.version }} ./artifacts/*.gz --generate-notes --draft

0 commit comments

Comments
 (0)