Access to git information on deployed site

For sites deployed from github I’m wondering if there’s any access to the commit id within the build environment? I’d like to give users an option to reload the app if a new version becomes available.

@Susanne What you are looking for can be found in the environment variable documentation here as COMMIT_REF and/or CACHED_COMMIT_REF (for the previous build):

You could also possibly use BUILD_ID from here:

1 Like

Thank you so very much!