Cazzar

Results 84 comments of Cazzar

@AbrarSyed https://regex101.com/r/tT1dX7/3 though, if you also want it to be a minimum of x.y.z as the version string, I would use `(?:(\d+\.\d+(?:\.\d+){0,1})-){0,1}(\d+(?:\.\d+){2,})` A nice thing with this one, you have...

Though if you want a more... Advanced one that is lenient to (x.y.z-)a.b.c...(-ANYTHING) kashike and I ended up with [this](HTTPS://regex101.com/r/tT1dX7/7) which has named capture groups for Minecraft and full version...

@ST-DDT that's as simple as prefixing the regex with: `(?i:MC)?`

@Kubuxu The laziest way I could do that is [this](https://regex101.com/r/tT1dX7/8) And whilst the thought of having the standard of SemVer fully enforced would be nice, though it also has previously...

Though it doesn't mean other inherited versions will load at the same time.

I'm going to guess IDEA 14, if so add this to build.gradle: idea { module { inheritOutputDirs = true } } On Fri, 17 Apr 2015 1:57 am ewm2000 [email protected]...

Are you able to provide image sizes of the different builds locally? Alternatively, we could just keep the .dockerignore the same and use the env `GITHUB_SHA` see: https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables

Further investigation `/p:Version={VersionNumber}` might work better, if we can get rid of the shared assembly info

FYI - there is further discussion going on about this internally about some earlier decisions, etc

This is intentional, somewhat, but that may be a little bit of a side effect of the changes a while back we changed the file path to be in the...