We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0b2939 commit 42c5f9aCopy full SHA for 42c5f9a
etc/tag.sh
@@ -0,0 +1,8 @@
1
+#! /usr/bin/env bash
2
+
3
+set -euox pipefail
4
5
+BASE_TAG="v1.0.1"
6
+TAG="$(git describe --tags --exclude "${BASE_TAG}.*.*" | sed 's/-/./g')"
7
+git tag "${TAG}"
8
+git push origin "${TAG}"
0 commit comments