We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e648a6 commit 44d22a6Copy full SHA for 44d22a6
hack/release.sh
@@ -25,6 +25,12 @@ if [[ -z "$BRANCH" || -z "$TAG_NAME" ]]; then
25
exit 1
26
fi
27
28
+# Checking out the repo's release branch
29
+clone_dir=$(mktemp -d)
30
+git clone "[email protected]:${REPO}.git" "$clone_dir"
31
+cd "$clone_dir"
32
+git checkout "$BRANCH"
33
+
34
echo "Preparing local git tags used by changelog generation."
35
# tags with "-" are pre-releases, e.g. 1.0.0-rc.1
36
if [[ "$TAG_NAME" =~ "-" ]]; then
0 commit comments