babashka/.circleci/script/release

19 lines
289 B
Text
Raw Normal View History

2019-08-09 12:51:42 +00:00
#!/usr/bin/env bash
rm -rf /tmp/release
mkdir -p /tmp/release
cp bb /tmp/release
cp src-bash/bbk /tmp/release
2019-08-09 12:51:42 +00:00
VERSION=$(cat resources/BABASHKA_VERSION)
cd /tmp/release
## release binary as zip archive
zip "babashka-$VERSION-$BABASHKA_PLATFORM-amd64.zip" bb bbk
2019-08-09 12:51:42 +00:00
## cleanup
rm bb bbk