From 640c3ec7e67436f0911651880bafb7c91ffaab31 Mon Sep 17 00:00:00 2001 From: kskarthik <11899221+kskarthik@users.noreply.github.com> Date: Tue, 5 Jul 2022 18:02:54 +0530 Subject: [PATCH] ci: rm unncessary dirs in linux artifact The linux archive ships with un-necessary dir's, This patch removes them & archive just the binary --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ca7756e..8d2d007 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -198,7 +198,8 @@ jobs: - name: Archive Linux artifact run: | - tar czvf ./target/release/neovide.tar.gz ./target/release/neovide + cd ./target/release/ + tar czvf neovide.tar.gz neovide - uses: actions/upload-artifact@v1 with: