meilisearch / vuepress-plugin-meilisearch

Add a relevant and typo tolerant search bar to your VuePress
MIT License
64 stars 14 forks source link

Improve the check-release tag parser to be more robust #285

Closed meili-bot closed 1 year ago

meili-bot commented 1 year ago

This PR is auto-generated.

The automated script generated this PR, which updates the check-release.sh script.

Explaination

check-release.yml used to parse the GITHUB_REF with tr -d 'refs/tags/v'. But, tr deletes characters and not a specific string. Which results in a wrong parsing of tags containings the characters present in refs/tags/v. Example: refs/tags/v0.1.0-strapi-v3.1 becomes 0.1.0-pi-v3.1

To avoid this issue, the command is changed to a more robust parsing method: cut -d '/' -f 3 | sed -r 's/^v//'

meili-bors[bot] commented 1 year ago

Build succeeded: