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
Right now, when using build.yml as a CI action all of the artifacts end up with the same version number (whatever is committed in the repo). We should set the 4th segment of the version (usually named "build", conveniently) to something unique (timestamp, commit, etc) so that people consuming the artifacts can accurately report what version they were using.
The text was updated successfully, but these errors were encountered:
MinVer has a nice solution for this using the git commit distance and hash
results in an InformationalVersion like so: 0.3.1-alpha.0.44+72e85fe6aa59466bb50da1f43d49e38a40ac0c6d
meaning a commit after the 0.3.0 tag by 44 commits. This value gets printed to the KSP log under "Mod DLLs found:"
Supporting this requires no changes in KSPBuildTools
Right now, when using build.yml as a CI action all of the artifacts end up with the same version number (whatever is committed in the repo). We should set the 4th segment of the version (usually named "build", conveniently) to something unique (timestamp, commit, etc) so that people consuming the artifacts can accurately report what version they were using.
The text was updated successfully, but these errors were encountered: