Skip to content

Commit

Permalink
ci: push fixed tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Sep 9, 2024
1 parent c3c4bf7 commit cc4eef0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 43 deletions.
5 changes: 4 additions & 1 deletion packages/ci/src/gulp/prepublish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ async function commitTagPush(version: string) {
await execa("git", ["add", "package.json", "CHANGELOG.md"], { stdio });
await execa("git", ["commit", "--message", commitMsg], { stdio });
await execa("git", ["tag", `${tagPrefix}${version}`], { stdio });
await execa("git", ["push", "--follow-tags"], { stdio });
await execa("git", ["push"], { stdio });
await execa("git", ["push", "origin", "tag", `${tagPrefix}${version}`], {
stdio,
});
}

async function publishGithubRelease(preset: Preset) {
Expand Down
42 changes: 0 additions & 42 deletions packages/di/CHANGELOG.md

This file was deleted.

0 comments on commit cc4eef0

Please sign in to comment.