docker: show version via $COMMIT_SHA (and $BRANCH if not "main")

This commit is contained in:
Ralf Vogler 2023-08-27 18:33:27 +02:00
parent 24a9f23211
commit 2eb17a1419
2 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,9 @@
set -eo pipefail # exit on error, error on any fail in pipe (not just last cmd); add -x to print each cmd; see gist bash_strict_mode.md
echo "Version: https://github.com/vogler/free-games-claimer/tree/${COMMIT_SHA}"
[ ! -z $BRANCH ] && [ $BRANCH != "main" ] && echo "Branch: ${BRANCH}"
# Remove chromium profile lock.
# When running in docker and then killing it, on the next run chromium displayed a dialog to unlock the profile which made the script time out.
# Maybe due to changed hostname of container or due to how the docker container kills playwright - didn't check.