Skip to content

Commit

Permalink
Add mkRelease helper script
Browse files Browse the repository at this point in the history
  • Loading branch information
fossfreedom committed Jun 3, 2023
1 parent 859aaa3 commit 9abe402
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/mkRelease.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
set -e

git submodule init
git submodule update

VERSION="0.9"
NAME="magpie"
git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar
xz -9 "${NAME}-${VERSION}.tar"

gpg --default-key 1E1FB0017C998A8AE2C498A6C2EAA8A26ADC59EE --armor --detach-sign "${NAME}-${VERSION}.tar.xz"
gpg --verify "${NAME}-${VERSION}.tar.xz.asc"

0 comments on commit 9abe402

Please sign in to comment.