mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-17 21:24:40 +10:00
36 lines
1.1 KiB
Bash
Executable File
36 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2129
|
|
|
|
set -e
|
|
|
|
if [[ "${SHOULD_BUILD}" != "yes" ]]; then
|
|
echo "Will not update version JSON because we did not build"
|
|
exit 0
|
|
fi
|
|
|
|
jsonTmp=$( cat "./upstream/${VSCODE_QUALITY}.json" | jq --arg 'tag' "${MS_TAG/\-insider/}" --arg 'commit' "${MS_COMMIT}" '. | .tag=$tag | .commit=$commit' )
|
|
echo "${jsonTmp}" > "./upstream/${VSCODE_QUALITY}.json" && unset jsonTmp
|
|
|
|
git add .
|
|
|
|
CHANGES=$( git status --porcelain )
|
|
|
|
if [[ -n "${CHANGES}" ]]; then
|
|
# COMMIT_MESSAGE="build(${VSCODE_QUALITY}): update to commit ${MS_COMMIT:0:7}"
|
|
# COMMIT_REF=$( git rev-parse --abbrev-ref HEAD )
|
|
|
|
# if [[ "${GITHUB_ENV}" ]]; then
|
|
# echo "SHOULD_COMMIT=yes" >> "${GITHUB_ENV}"
|
|
# echo "COMMIT_MESSAGE=${COMMIT_MESSAGE}" >> "${GITHUB_ENV}"
|
|
# echo "COMMIT_REF=${COMMIT_REF}" >> "${GITHUB_ENV}"
|
|
# fi
|
|
git commit -S -m "build(${VSCODE_QUALITY}): update to commit ${MS_COMMIT:0:7}"
|
|
|
|
BRANCH_NAME=$( git rev-parse --abbrev-ref HEAD )
|
|
|
|
if ! git push origin "${BRANCH_NAME}" --quiet; then
|
|
git pull origin "${BRANCH_NAME}"
|
|
git push origin "${BRANCH_NAME}" --quiet
|
|
fi
|
|
fi
|