From ec6f597fa4e717ec23cd425d21f131685e962942 Mon Sep 17 00:00:00 2001 From: HMH Date: Fri, 1 May 2020 22:10:13 +0200 Subject: [PATCH] No zip on Windows but 7z. Also fixed a typo. --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9dca8a25..5698fbc4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,7 +22,7 @@ jobs: package-files: | target/release/linux.zip target/debian/Weylus*.deb - pkg-cmd: cd taget/release/ && zip linux.zip Weylus + pkg-cmd: cd target/release/ && zip linux.zip Weylus - os: macOS-latest build-cmd: npm install -g typescript && cargo install cargo-bundle && cargo bundle --release package-files: target/release/bundle/osx/macOS.zip @@ -30,7 +30,7 @@ jobs: - os: windows-latest build-cmd: npm install -g typescript && npm run build && cargo build --release --verbose package-files: target/release/Windows.zip - pkg-cmd: cd target/release/ && zip Windows.zip Weylus.exe + pkg-cmd: cd target/release/ && 7z a Windows.zip Weylus.exe steps: - name: Download deps