Skip to content

Commit

Permalink
update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
woelper committed Feb 25, 2024
1 parent 1c3aa2f commit fc18a34
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions create_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@ git add Cargo.toml
git add Cargo.lock
git add PKGBUILD
# tag the commit with current version
git tag $VERSION
# create changelog
git tag $VERSION
git commit -m "Release version $VERSION"
git push --tags
git push
kokai release --ref $VERSION > tmp
cat CHANGELOG.md >> tmp
mv tmp CHANGELOG.md
git add CHANGELOG.md
git commit -m "Release version $VERSION"
# git commit -m "Update changelog for $VERSION"
git push --tags
git commit -m "Update changelog for $VERSION"
git push
# this needs no-verify as we modify the plist during the build, and cargo does not accept that.
cargo publish --no-verify

0 comments on commit fc18a34

Please sign in to comment.