You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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...
0 commit comments