Docker config for @recaptime.dev's Knot server on Hack Club Nest. knot.hackclub.community
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: fix timestamp variable name

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+1 -1
+1 -1
bin/build
··· 4 4 # First, collect metadata from git about the current commit 5 5 _COMMIT_SHA_LOCAL=$(git rev-parse HEAD) 6 6 _BRANCH_NAME_SLUG_LOCAL=$(git rev-parse --abbrev-ref HEAD | tr / -) 7 - _TIMESTAMP_LOCAL=$(date -u +"%Y%m%d%H%M%S") 7 + TIMESTAMP=$(date -u +"%Y%m%d%H%M%S") 8 8 9 9 # Then try to get the same info from GitLab CI environment variables, if available 10 10 COMMIT_SHA=${CI_COMMIT_SHA:-$_COMMIT_SHA_LOCAL}