Working around invalid tag formats? #2263
Unanswered
AndrewLeedham
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am working on converting a project from semantic-release to Auto. A process I have done a few times in the past. But running into some interesting issues this time, the project in question uses a custom tag format of
<env>-x.x.x
e.gdev-1.431.0
orprod-1.164.0
. This is causing issues because Auto does not recognise this format and throws errors when trying to get the version number from them. I am trying to find a work around that does not involve changing all the tags, because I won't be updating to Auto across all environments (dev/stage/prod) straight away.So far I have tried a few things:
git-tag
plugin which parses this new format. However, it seems Auto still does tag processing internally regardless of release plugins.Any ideas or thoughts would be greatly appreciated?
Beta Was this translation helpful? Give feedback.
All reactions