Skip to content

Commit

Permalink
Fix release version to use correct var (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen authored Aug 21, 2024
1 parent 172691a commit 1ecde30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: release_info
run: |
cargo install cargo-get
echo "tag_name=$(cargo get package.version)" >> $GITHUB_OUTPUT
echo "tag_name=$(cargo get workspace.package.version)" >> $GITHUB_OUTPUT
release:
name: ${{ matrix.job.target }} (${{ matrix.job.os }})
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- id: version_info
run: |
cargo install cargo-get
echo "version=$(cargo get package.version)" >> $GITHUB_OUTPUT
echo "version=$(cargo get workspace.package.version)" >> $GITHUB_OUTPUT
- name: Display structure of downloaded files
run: ls -R artifacts
- run: gh release create v${{ steps.version_info.outputs.version }} ./artifacts/*.gz --generate-notes --draft

0 comments on commit 1ecde30

Please sign in to comment.