Skip to content

Commit

Permalink
When logging successful releases and creating tags include an informa…
Browse files Browse the repository at this point in the history
…tion about those being git tags (#368)
  • Loading branch information
Andarist committed May 14, 2020
1 parent 2d66983 commit 8040173
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/gorgeous-insects-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@changesets/cli": patch
---

When logging successful releases and creating tags include an information about those being git tags.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/publish/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default async function run(
// We create the tags after the push above so that we know that HEAD wont change and that pushing
// wont suffer from a race condition if another merge happens in the mean time (pushing tags wont
// fail if we are behind master).
log("Creating tags...");
log("Creating git tags...");
for (const pkg of successful) {
const tag = `${pkg.name}@${pkg.newVersion}`;
log("New tag: ", tag);
Expand Down

0 comments on commit 8040173

Please sign in to comment.