summaryrefslogtreecommitdiffstats
path: root/ci/make-release.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/make-release.sh')
-rwxr-xr-xci/make-release.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/make-release.sh b/ci/make-release.sh
index d3b26189..761923bf 100755
--- a/ci/make-release.sh
+++ b/ci/make-release.sh
@@ -15,7 +15,11 @@ export CARGO_PROFILE_RELEASE_LTO=true
cargo build --bin mdbook --release
cd target/release
case $1 in
- ubuntu* | macos*)
+ ubuntu*)
+ asset="mdbook-$TAG-$host.tar.gz"
+ tar czf ../../$asset mdbook
+ ;;
+ macos*)
asset="mdbook-$TAG-$host.tar.gz"
# There is a bug with BSD tar on macOS where the first 8MB of the file are
# sometimes all NUL bytes. See https://github.com/actions/cache/issues/403