ci(spearhead): push to correct branch [skip ci]

This commit is contained in:
Baptiste Augrain 2022-08-30 15:01:09 +02:00
parent 2c429f0778
commit 762cfede26

View file

@ -14,6 +14,7 @@ fi
echo "$( cat "insider.json" | jq --arg 'tag' "${MS_TAG}" --arg 'commit' "${MS_COMMIT}" '. | .tag=$tag | .commit=$commit' )" > "insider.json" echo "$( cat "insider.json" | jq --arg 'tag' "${MS_TAG}" --arg 'commit' "${MS_COMMIT}" '. | .tag=$tag | .commit=$commit' )" > "insider.json"
git config user.email "vscodium-ci@not-real.com"
git config user.name "VSCodium CI" git config user.name "VSCodium CI"
git add . git add .
@ -21,8 +22,8 @@ CHANGES=$( git status --porcelain )
if [[ ! -z "${CHANGES}" ]]; then if [[ ! -z "${CHANGES}" ]]; then
git commit -m "build(insider): update to commit ${MS_COMMIT:0:7}" git commit -m "build(insider): update to commit ${MS_COMMIT:0:7}"
if ! git push origin master --quiet; then if ! git push origin insider --quiet; then
git pull origin master git pull origin insider
git push origin master --quiet git push origin insider --quiet
fi fi
fi fi