aboutsummaryrefslogtreecommitdiff
path: root/ci/before_deploy.sh
blob: 6493f9646e7b466d1318d9024bbb971dfe77e8ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# `before_deploy` phase: here we package the build artifacts

set -ex

# create a "staging" directory
mkdir staging

# NOTE All Cargo build artifacts will be under the 'target/$TARGET/{debug,release}'
cp target/$TARGET/release/ilc* staging

cd staging

# release tarball will look like 'rust-everywhere-v1.2.3-x86_64-unknown-linux-gnu.tar.gz'
tar czf ../${PROJECT_NAME}-${TARGET}.tar.gz *