Skip to content

Commit

Permalink
Undo hardcoded release version (#479)
Browse files Browse the repository at this point in the history
During testing, we set a hardcoded release version, but this was not
undone.

This fixes the release action by restoring the tag-derived version
string.
  • Loading branch information
olix0r committed Apr 15, 2020
1 parent 2044494 commit fb56712
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 @@ -22,7 +22,7 @@ jobs:
- name: package
env:
CARGO_RELEASE: "1"
PACKAGE_VERSION: test-0.0.0 # ${{ steps.release-tag-meta.outputs.name }}
PACKAGE_VERSION: ${{ steps.release-tag-meta.outputs.name }}
uses: ./.github/actions/package
with:
entrypoint: make
Expand Down

0 comments on commit fb56712

Please sign in to comment.