mirror of
https://gitlab.com/spectre.app/cli.git
synced 2024-11-01 10:51:44 +01:00
34 lines
1.3 KiB
Bash
Executable file
34 lines
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd "${BASH_SOURCE%/*}"
|
|
tag=$(git describe --match '*-cli*')
|
|
commit=$(git describe --long --dirty --match '*-cli*')
|
|
[[ $commit != *-dirty ]] || { echo >&2 "Tree is dirty, first commit any changes."; exit 1; }
|
|
|
|
mpwArchive=mpw-$commit.tar.gz
|
|
[[ -e $mpwArchive ]] && echo >&2 "WARNING: $mpwArchive already exists. Will overwrite."
|
|
read -n1 -p "Will prepare and release $mpwArchive. Press a key to continue or ^C to abort."
|
|
|
|
echo "Cleaning .."
|
|
( git clean -ffdx . && cd core && git clean -ffdx . )
|
|
|
|
echo "Creating archive $mpwArchive .."
|
|
git show --show-signature --pretty=format:%H --quiet "$tag" > VERSION
|
|
{ git ls-files -z .; printf VERSION; } | xargs -0 tar -Lcvzf "$mpwArchive"
|
|
|
|
echo "Creating archive signature $mpwArchive.sig .."
|
|
gpg --detach-sign "$mpwArchive"
|
|
|
|
echo "Installing archive and signature in current site .."
|
|
cd ../../public/site/current
|
|
mv "../../../platform-independent/cli-c/$mpwArchive" .; [[ -e $_ ]]
|
|
mv "../../../platform-independent/cli-c/$mpwArchive.sig" .; [[ -e $_ ]]
|
|
ln -sf "$mpwArchive" "masterpassword-cli.tar.gz"; [[ -e $_ ]]
|
|
ln -sf "$mpwArchive.sig" "masterpassword-cli.tar.gz.sig"; [[ -e $_ ]]
|
|
|
|
echo
|
|
echo "Done. Ready to publish the site."
|
|
echo " package: $mpwArchive"
|
|
echo " signature: $mpwArchive.sig"
|
|
echo " url: https://ssl.masterpasswordapp.com/$mpwArchive"
|