Skip to content

Commit 7f85500

Browse files
author
REDMOND\acoates
committed
ensure tag is pushed
1 parent 31a3dc6 commit 7f85500

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.ado/publish.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ function doPublish() {
4747
exec(`git checkout -b ${tempPublishBranch}`);
4848

4949
exec(`git add ${pkgJsonPath}`);
50-
exec(`git commit -m "Applying package update to v${releaseVersion}`);
50+
exec(`git commit -m "Applying package update to ${releaseVersion}`);
5151
exec(`git tag v${releaseVersion}`);
5252
exec(`git push origin HEAD:${tempPublishBranch} --follow-tags --verbose`);
53+
exec(`git push origin tag v${releaseVersion}`);
5354

5455
// -------- Generating Android Artifacts with JavaDoc
5556
exec("gradlew installArchives");

0 commit comments

Comments
 (0)