Skip to content

Commit

Permalink
fix: add missing tagging in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Aug 7, 2024
1 parent e8349f9 commit cc63b17
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions release.nu
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def main [version: string] {

let release_notes = $release_notes | reduce {|$section, $full| $full + $section} -f "";

print $release_notes;

git commit -m $"chore(deps): ecsact repos for ($version) release";
git push origin main;
git tag $version;
git push origin $version;
gh release create $version -n $release_notes --latest -t $version --verify-tag --latest;
}

0 comments on commit cc63b17

Please sign in to comment.