Some checks failed
Build-Release-Image / Build-Image (linux/arm64) (push) Failing after 12m22s
Build-Release-Image / Build-Image (linux/amd64) (push) Has been cancelled
Build-Release-Image / Merge-Images (push) Has been cancelled
Build-Release-Image / Create-Release (push) Has been cancelled
Build-Release-Image / Notify (push) Has been cancelled
18 lines
454 B
Bash
Executable File
18 lines
454 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" || exit 1; pwd -P)"
|
|
REPO_ROOT=$(echo "${SCRIPT_DIR}" | sed 's:scripts::g')
|
|
BUILD_INFO_FILE="${REPO_ROOT}/app/build_info.py"
|
|
|
|
if [[ -z "$2" ]]; then
|
|
echo "Invalid usage. Usage: $0 SHA VERSION"
|
|
exit 1
|
|
fi
|
|
|
|
SHA="$1"
|
|
echo "SHA1 = \"${SHA}\"" > $BUILD_INFO_FILE
|
|
BUILD_TIME=$(date +%s)
|
|
echo "BUILD_TIME = \"${BUILD_TIME}\"" >> $BUILD_INFO_FILE
|
|
VERSION="$2"
|
|
echo "VERSION = \"${VERSION}\"" >> $BUILD_INFO_FILE
|