2
0
Эх сурвалжийг харах

Binary releases of VS Code without MS branding/telemetry/licensing

Peter Squicciarini 7 жил өмнө
parent
commit
6825d14395
1 өөрчлөгдсөн 3 нэмэгдсэн , 9 устгасан
  1. 3 9
      check_tags.sh

+ 3 - 9
check_tags.sh

@@ -5,14 +5,8 @@ then
     echo "Latest MS tag ${LATEST_MS_TAG} already exists in VSCodium. Bail"
 else
     echo "New MS tag found, continuing build"
-    if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then
-      echo $LATEST_MS_TAG > version.md
-      git config --local user.name "Travis CI"
-      git config --local user.email "builds@travis-ci.com"
-      git add version.md
-      git commit -m "${LATEST_MS_TAG}"
-      git tag $LATEST_MS_TAG
-      git push --quiet https://$GITHUB_TOKEN@github.com/VSCodium/vscodium master --tags > /dev/null 2>&1
-    fi
+    git config --local user.name "Travis CI"
+    git config --local user.email "builds@travis-ci.com"
+    git tag $LATEST_MS_TAG
     export SHOULD_BUILD="yes"
 fi