Skip to content

Commit

Permalink
ci: fix auto release (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonbrad authored Apr 28, 2024
1 parent c0bb925 commit c86c46f
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 @@ -30,7 +30,7 @@ jobs:
- name: Check that tag version and Cargo.toml version are the same
shell: bash
run: |
if ! grep -q "version = \"$(echo $VERSION | sed 's/v\(.*\)-.*/\1/')\"" Cargo.toml; then
if ! grep -q "version = \"$(echo $VERSION | sed 's/v\(.*\)-*.*/\1/')\"" Cargo.toml; then
echo "version does not match Cargo.toml" >&2
exit 1
fi
Expand Down

0 comments on commit c86c46f

Please sign in to comment.