We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c83d7 commit 2657805Copy full SHA for 2657805
scripts/release.sh
@@ -95,6 +95,11 @@ function check_tag_correct() {
95
if [[ $tag != $(git describe --tags) ]]; then
96
red "tag $tag not checked out"
97
exit 1
98
+ else
99
+ # At this point we know that the tag is checked out. Report checked out git
100
+ # commit.
101
+ commit_hash=$(git rev-parse HEAD)
102
+ echo "Tag $tag checked out. Git commit: $commit_hash"
103
fi
104
105
# Build tapd to extract version.
0 commit comments