archive.sh

This commit is contained in:
Steven Hugg 2018-12-21 15:50:54 -06:00
parent 5ba02e493a
commit 875a127d60
3 changed files with 18 additions and 7 deletions

View File

@ -15,12 +15,6 @@ check:
lint:
gjslint -r src
# https://github.com/Kentzo/git-archive-all
archive:
mkdir -p release
git-archive-all --prefix 8bitworkshop-latest/ release/8bitworkshop-latest.zip
git archive --prefix 8bitworkshop- -o release/8bitworkshop-tools.zip HEAD tools
web:
ifconfig | grep inet

17
scripts/archive.sh Executable file
View File

@ -0,0 +1,17 @@
# https://github.com/Kentzo/git-archive-all
# build archives
export VERSION=`git tag | tail -1`
export PREFIX=8bitworkshop-$VERSION
echo Creating $PREFIX
ln -fs . $PREFIX
git-archive-all --prefix $PREFIX release/$PREFIX.zip
zip -9r release/$PREFIX.zip $PREFIX/gen
git archive --prefix 8bitworkshop- -o release/8bitworkshop-tools.zip HEAD tools
# copy to remote
. ./scripts/env.sh
DESTPATH=$RSYNC_PATH/release/
rsync -rv --progress --stats -e "ssh -p 2222" release/*.zip $DESTPATH
# remove symlink
rm $PREFIX

2
tss

@ -1 +1 @@
Subproject commit 61a1691a1de05dca3b694bf603db49ffbaf572cf
Subproject commit d630ddcb29d74a178cde043d74188fac35d6a21f