Kaynağa Gözat

Updated publish script

Benoit Blanchon 7 yıl önce
ebeveyn
işleme
e5c4778ff7
1 değiştirilmiş dosya ile 7 ekleme ve 2 silme
  1. 7 2
      scripts/publish.sh

+ 7 - 2
scripts/publish.sh

@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-set -eux
+set -eu
 
 cd "$(dirname "$0")/.."
 
@@ -36,9 +36,14 @@ commit_new_version () {
 
 add_tag () {
 	CHANGES=$(awk '/\* /{ FOUND=1; print; next } { if (FOUND) exit}' CHANGELOG.md)
-	git tag -m "ArduinoJson $VERSION\n$CHANGES" $TAG
+	git tag -m "ArduinoJson $VERSION"$'\n'"$CHANGES" "$TAG"
+}
+
+push () {
+	git push --follow-tags
 }
 
 update_version_in_source
 commit_new_version
 add_tag
+push