SiarheiFedartsou / fastlane-plugin-versioning

Extends fastlane versioning actions. Allows to set/get versions without using agvtool and do some other small tricks.
MIT License
504 stars 60 forks source link

Consider using CI_PIPELINE_IID for gitlab #34

Closed joshfriend closed 4 years ago

joshfriend commented 5 years ago

CI_PIPELINE_ID is shared between all projects and will increase very rapidly if you have lots of projects and builds, whereas CI_PIPELINE_IID is:

The unique id of the current pipeline scoped to project

Some caveats:

jdouglas-nz commented 4 years ago

@joshfriend - I'll patch this in! I'll have it return the CI_PIPELINE_IID , if it is present, or alternatively fall back to the CI_JOB_ID (which is what it does currently)

joshfriend commented 4 years ago

40