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 46bf415 commit 80cff1fCopy full SHA for 80cff1f
scripts/release.sh
@@ -40,6 +40,14 @@ git tag $VERSION -m "Release $VERSION"
40
git push origin main
41
git push origin $VERSION
42
43
+# Wait for tag to be available on GitHub
44
+echo "Waiting for tag to be available on GitHub..."
45
+sleep 2
46
+gh api repos/CodSpeedHQ/codspeed-cpp/git/ref/tags/$VERSION > /dev/null 2>&1 || {
47
+ echo "Tag $VERSION not found on GitHub. Waiting a bit longer..."
48
+ sleep 3
49
+}
50
+
51
# Create tarball with submodules included
52
echo "Creating release tarball with submodules..."
53
TMPDIR=$(mktemp -d)
0 commit comments