From 3e60380851dd222ba15e196f3e4fb5098f11e0a3 Mon Sep 17 00:00:00 2001 From: Dinesh kumar Date: Sat, 2 Oct 2021 19:30:13 +0530 Subject: [PATCH] Fixed double zip for windows build artifact - Removed Compress-Archive step since we need only neovide executable --- .github/workflows/build.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 87de899..298ab06 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,15 +48,10 @@ jobs: run: | cargo build --release - - name: Archive Windows artifact - run: | - powershell rm ./target/release/neovide.zip - powershell Compress-Archive ./target/release/neovide.exe ./target/release/neovide.zip - - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v2 with: name: neovide-windows.zip - path: ./target/release/neovide.zip + path: ./target/release/neovide.exe build-mac: runs-on: macos-latest