Actually I have a need to get a timestamp of my commit in GitLab CI. Alredy have tested the official documentation of GitLab CI Variables here: https://docs.gitlab.com/ee/ci/variables
But there are only commit variables for
- CI_COMMIT_SHA The commit revision for which project is built
- CI_COMMIT_TAG The commit tag name. Present only when building tags.
Is there a way to achieve this? Need to add these values to variables. My prefered way would be to add it to the variables section.
job:
variables:
COMMIT_TIME: $(git_timestamp)
script: echo $COMMIT_TIME
I'm open to any helpful suggestions.