update release guide

This commit is contained in:
2025-08-20 08:42:08 +00:00
parent 6670ed0167
commit 70c2f02b0b
+5 -4
View File
@@ -74,14 +74,15 @@ options:
$EDITOR configure.ac $EDITOR configure.ac
# make full build # make full build
make -f Makefile.dev release make -f Makefile.dev release
# update PKGBUILD with new version and sha256 sum
sha256sum margen-x.y.z.tar.gz
$EDITOR PKGBUILD
# push to repo # push to repo
git commit -am "margen vX.Y.Z" git commit -am "margen vX.Y.Z"
git tag vX.Y.Z git tag vX.Y.Z
git push origin master --tags git push origin master --tags
# create release from tag on github # create release from tag on github
# update PKGBUILD with new sha256 sum # attach .tar.gz to the github release
sha256sum margen-x.y.z.tar.gz
make -f Makefile.dev release-arch make -f Makefile.dev release-arch
git commit -am "update arch sha256" # attach .pkg.tar.zst to the github release
# add .pkg.tar.zst on the release
``` ```