vscodium/update_insider.sh

32 lines
858 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-08-29 13:13:25 +00:00
set -e
2022-08-29 13:13:25 +00:00
if [[ "${SHOULD_BUILD}" != "yes" ]]; then
echo "Will not update version JSON because we did not build"
2023-07-23 16:35:27 +00:00
exit 0
2022-08-29 13:13:25 +00:00
fi
if [[ -z "${GITHUB_TOKEN}" ]]; then
echo "Will not update insider.json because no GITHUB_TOKEN defined"
2023-07-23 16:35:27 +00:00
exit 0
2022-08-29 13:13:25 +00:00
fi
jsonTmp=$( jq --arg 'tag' "${MS_TAG/\-insider/}" --arg 'commit' "${MS_COMMIT}" '. "insider.json" | .tag=$tag | .commit=$commit' )
echo "${jsonTmp}" > "insider.json" && unset jsonTmp
2022-10-06 20:15:41 +00:00
git config user.email "$( echo "${GITHUB_USERNAME}" | awk '{print tolower($0)}' )-ci@not-real.com"
git config user.name "${GITHUB_USERNAME} CI"
2022-08-29 13:13:25 +00:00
git add .
CHANGES=$( git status --porcelain )
if [[ -n "${CHANGES}" ]]; then
2022-08-29 13:13:25 +00:00
git commit -m "build(insider): update to commit ${MS_COMMIT:0:7}"
if ! git push origin insider --quiet; then
git pull origin insider
git push origin insider --quiet
2022-08-29 13:13:25 +00:00
fi
fi