Skip to content

Commit 8dcbdd2

Browse files
committed
Fix zip for windows binaries. Bump version to 0.0.26
1 parent bbff9b2 commit 8dcbdd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
if [[ "${ARCHIVE_SUFFIX}" == "tar.gz" ]]; then
9999
tar -czvf "./${BIN_RELEASE_VERSIONED}" -C "$(dirname "${BIN_OUTPUT}")" "$(basename "${BIN_OUTPUT}")"
100100
else
101-
zip "./${BIN_RELEASE_VERSIONED}" "${BIN_OUTPUT}"
101+
zip -j "./${BIN_RELEASE_VERSIONED}" "${BIN_OUTPUT}"
102102
fi
103103
104104
# Output for later steps

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bi"
3-
version = "0.0.25"
3+
version = "0.0.26"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)