We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2811c commit c0bb046Copy full SHA for c0bb046
1 file changed
deploy.sh
@@ -74,7 +74,10 @@ echo "Committing and tagging..."
74
git add -A
75
git commit -m "v$NEW_VERSION — $DESCRIPTION"
76
git tag "v$NEW_VERSION"
77
-git push origin main --tags
+# Push commit first, then tag separately — pushing together causes
78
+# GitHub Actions to fire only the branch event, skipping the publish job.
79
+git push origin main
80
+git push origin "v$NEW_VERSION"
81
82
echo ""
83
echo "=== v$NEW_VERSION pushed ==="
0 commit comments