diff options
Diffstat (limited to 'ci/before_deploy.sh')
-rw-r--r-- | ci/before_deploy.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 6493f96..099ae65 100644 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -2,6 +2,9 @@ set -ex +# Generate artifacts for release +cargo build --target $TARGET --release + # create a "staging" directory mkdir staging @@ -10,5 +13,5 @@ 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' +# release tarball will look like 'ilc-unknown-linux-gnu.tar.gz' tar czf ../${PROJECT_NAME}-${TARGET}.tar.gz * |