Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
actions: fix wrong substring match in release.yml (#200)
This appears to expect that the release tag is named `release/vX.Y.Z` rather than just `vX.Y.Z`, but all the existing release tags use the second naming format. This is preventing v0.8.0 from being released, as the publish action fails with ``` Error: Crate version v0.8.0 does not match tag refs/tags/v0.8.0 ``` because the refs path was not removed (as it's expected to be `refs/tags/release/` rather than refs/tags/`). I'm...not entirely sure how this ever worked previously...
- Loading branch information