mirror of
https://github.com/cage-kiosk/cage.git
synced 2025-10-29 05:40:19 -04:00
13 lines
260 B
Text
13 lines
260 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -x
|
||
|
|
|
||
|
|
project="$(basename "$(pwd)")"
|
||
|
|
last=$(git describe --tags --abbrev=0)
|
||
|
|
|
||
|
|
prefix="$project-${last#v}"
|
||
|
|
archive="$prefix.tar.gz"
|
||
|
|
|
||
|
|
git archive --prefix="$prefix/" -o "$archive" "$last"
|
||
|
|
gpg --output "$archive".sig --detach-sig "$archive"
|