I'm attempting to create a versioned deployment package for my application but am getting the following error: System.InvalidOperationException: This version string cannot be parsed. at Mendix.Modeler.VersionControl.MdaVersion..ctor(String version) in Mendix.Modeler.Core.VersionControl\MdaVersion.cs:line 34 at Mendix.Modeler.VersionControl.Operations.Git.GitGetTagsOperation.Execute(GetTagsRequest request) in Mendix.Modeler.VersionControl\Operations\Git\GitGetTagsOperation.cs:line 52 at Mendix.Modeler.VersionControl.VersionedMdaDataRetriever.<>c__DisplayClass11_0.<AddGetLatestVersionsStep>b__0(IProgressInfo info) in Mendix.Modeler.VersionControl\VersionedMdaDataRetriever.cs:line 149 at Mendix.Modeler.Utility.Progress.StepBase`1.Run(TProgressInfo info) in Mendix.Modeler.Utility\Progress\Step.cs:line 31 at Mendix.Modeler.Utility.Progress.StepBase`1.Mendix.Modeler.Utility.Progress.IStep.Run(Object progressInfo) in Mendix.Modeler.Utility\Progress\Step.cs:line 36 at Mendix.Modeler.UIFramework.Progress.ProcessRunner.RunStep(IStep step) in Mendix.Modeler.UIFramework\Progress\ProcessRunner.cs:line 165 at Mendix.Modeler.UIFramework.Progress.ProcessRunner.OnDoWork(Object sender, DoWorkEventArgs e) in Mendix.Modeler.UIFramework\Progress\ProcessRunner.cs:line 79 at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) --- End of stack trace from previous location --- at Mendix.Modeler.UIFramework.Progress.ProcessRunner.Run() in Mendix.Modeler.UIFramework\Progress\ProcessRunner.cs:line 55 at Mendix.Modeler.VersionControl.VersionedMdaDataRetriever.RetrieveMdaInformation(String projectFilePath, String projectDirectory) in Mendix.Modeler.VersionControl\VersionedMdaDataRetriever.cs:line 57 I've seen this post, but commits have only ever been through Git (private server) within Studio Pro. I have the proper permissions and there are no lingering errors. I can create an unversioned package, but that is not what I want. Any ideas on what the issue is and/or what I can try to get this to work?
asked
Cayleigh V
1 answers
0
It seems that Mendix has issues if there are tagged versions in Git that don't follow it's naming scheme. To fix the issue, we had to remove the delinquent tags from our GitLab repo, as well as remove the tagged versions locally ('git tag -l' to see all tags and 'git tag -d <tag-name>' to delete them).