mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
10 lines
210 B
Bash
10 lines
210 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
VERSION=$1
|
|
|
|
apt-get install zip -y
|
|
|
|
# create zip and tar.gz packages for release upload
|
|
zip -r castopod-host-$VERSION.zip castopod-host
|
|
tar -zcvf castopod-host-$VERSION.tar.gz castopod-host
|