Skip to content

Commit

Permalink
chore: also remove 'edge' tag when stripping tags (#1030)
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 authored and edvald committed Jul 29, 2019
1 parent 2a49adc commit a1dfaba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ async function stripPrereleaseTags(tags: string[], version: string) {
await execa.stdout("git", ["tag", "-d", tag])
}
}

// We also need to remove the "edge" tag
await execa.stdout("git", ["tag", "-d", "edge"])
}

(async () => {
Expand Down

0 comments on commit a1dfaba

Please sign in to comment.