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 31a3dc6 commit 7f85500Copy full SHA for 7f85500
.ado/publish.js
@@ -47,9 +47,10 @@ function doPublish() {
47
exec(`git checkout -b ${tempPublishBranch}`);
48
49
exec(`git add ${pkgJsonPath}`);
50
- exec(`git commit -m "Applying package update to v${releaseVersion}`);
+ exec(`git commit -m "Applying package update to ${releaseVersion}`);
51
exec(`git tag v${releaseVersion}`);
52
exec(`git push origin HEAD:${tempPublishBranch} --follow-tags --verbose`);
53
+ exec(`git push origin tag v${releaseVersion}`);
54
55
// -------- Generating Android Artifacts with JavaDoc
56
exec("gradlew installArchives");
0 commit comments