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

set -ex

# create a "staging" directory
mkdir staging

# TODO update this part to copy the artifacts that make sense for your project
# 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 *