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
It's not clear how this behaves with pre-releases, so it'd be great to see a documentation update, but the best outcome would be an input for whether or not to include pre-release tags.
Why this is needed
The latest tag someone wants may or may not be a pre-release version, e.g. 0.5.0 vs 1.0.0-beta.1 - which would be returned?
The text was updated successfully, but these errors were encountered:
I just ran into this problem today (what a coincidence), I am trying to use this action for pre-release tags but it does not seem like the grep expression matches pre-release versions.
@roborourke@zischknall problem is this is running using -E and this doesn't support lookaheads and lookaheads and lookbehinds.
This should be replaced with -P
What you want to add
It's not clear how this behaves with pre-releases, so it'd be great to see a documentation update, but the best outcome would be an input for whether or not to include pre-release tags.
Why this is needed
The latest tag someone wants may or may not be a pre-release version, e.g.
0.5.0
vs1.0.0-beta.1
- which would be returned?The text was updated successfully, but these errors were encountered: