1
0
mirror of synced 2026-01-12 00:42:56 +00:00

tar files have version tag

This commit is contained in:
Larry Masinter 2021-03-19 12:47:57 -07:00 committed by Larry Masinter
parent 945ffe56f8
commit 5a04b88dcc
2 changed files with 13 additions and 3 deletions

View File

@ -11,11 +11,14 @@ tag=$1
cd ../maiko/bin
export PATH=.:"$PATH"
osarch=`osversion`.`machinetype`
cd ../..
tar cfz medley/tmp/maiko-$osarch.tgz \
--exclude "make*" maiko/bin \
tar cfz medley/tmp/maiko-$tag-$osarch.tgz \
--exclude "make*" --exclude legacy \
maiko/bin \
maiko/$osarch/lde*
cd medley
gh release upload $tag tmp/maiko-$osarch.tgz
gh release upload --clobber $tag tmp/maiko-$tag-$osarch.tgz

View File

@ -9,6 +9,8 @@ tag=$1
cd ..
echo making medley zip
tar cfz medley/tmp/medley-$tag.tgz \
--exclude-backups --exclude="*.PDF" \
medley/docs/dinfo \
@ -22,7 +24,12 @@ tar cfz medley/tmp/medley-$tag.tgz \
medley/sources/
cd medley
echo making release
gh release create $tag -F release-notes.md -p -t $tag
echo uploaded tmp/medley-$tag.tgz
gh release upload $tag tmp/medley-$tag.tgz --clobber
./scripts/release-one.sh $tag