diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 46124da..3737bf1 100644 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -16,8 +16,8 @@ mk_tarball() { # 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/iptoasn_webservice $td - dostrip $td/iptoasn_webservice + cp target/$TARGET/release/iptoasn-webservice $td + dostrip $td/iptoasn-webservice pushd $td @@ -36,7 +36,7 @@ mk_tarball() { # fully conform to Debian packaging guideliens (`lintian` raises a few warnings/errors) mk_deb() { # TODO update this part to package the artifacts that make sense for your project - dobin target/$TARGET/release/iptoasn_webservice + dobin target/$TARGET/release/iptoasn-webservice } main() {