Skip to content

Commit

Permalink
Add mkrelease.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
  • Loading branch information
ikeydoherty committed Jan 31, 2018
1 parent 53bd8e6 commit 6210cab
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions mkrelease.sh
@@ -0,0 +1,13 @@
#!/bin/bash
set -e

git submodule init
git submodule update

VERSION="15"
NAME="solus-hardware-config"
git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar
xz -9 "${NAME}-${VERSION}.tar"

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

0 comments on commit 6210cab

Please sign in to comment.