Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/many-gifts-sort.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@changesets/action": patch
---

Fix tags not triggering github create event
11 changes: 10 additions & 1 deletion src/gitUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,17 @@ export const push = async (
);
};

/**
* Push new tags 1 by 1 to avoid github create event limits
*/
export const pushTags = async () => {
await exec("git", ["push", "origin", "--tags"]);
const tagsOutput = await getExecOutput("git tag --contains HEAD");
const tagsArray = tagsOutput.stdout.split("\n").filter(Boolean);
await Promise.all(
tagsArray.map(async (tag) => {
await getExecOutput(`git push origin ${tag}`);
})
);
};

export const switchToMaybeExistingBranch = async (branch: string) => {
Expand Down