What have I missed? #1754
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
This is to do with the chosen versioning https://github.com/microsoft/AL-Go/blob/main/Workshop/Versioning.md. |
Beta Was this translation helpful? Give feedback.
-
@mazhelez We have a customer that runs AL Go! for Github in their development-environment and they have "versioningStrategy": 15, what does this mean? I can't seem to find any documanationen on this? Thanks in advance! // Kind regards, Peter :) |
Beta Was this translation helpful? Give feedback.
-
Just to be sure! I we have "VersioningStrategy": 3 we will control Major.Minor.Build in our app.json and Revision will be set by Github-runner, correct? :) Thanks in advance! :) Kind regards, |
Beta Was this translation helpful? Give feedback.
This is to do with the chosen versioning https://github.com/microsoft/AL-Go/blob/main/Workshop/Versioning.md.
If you haven't specified this then the default versioning is 0.
This means that you control the Major and Minor version (the first 2 parts of the number). The Build and Revision (3rd and 4th parts) are set by AL-Go Build is GitHub Run Number and Revision is the GitHub Run Attempt minus 1 i.e. the first attempt is 0.
So in your example you have had 84 runs and the artifact was created on the first attempt.
Looking at the documentation I linked above if you want to also control the Build part you can use VersioningStrategy 3, add "VersioningStrategy": 3 to the relevant setting.