From 8cd51049c00ba71d60a33d8157ac88ff349c17ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> Date: Sun, 15 Oct 2023 00:18:15 +0300 Subject: [PATCH] feat: workflow --- .github/workflows/rust.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 01f0d92..d818dde 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -61,7 +61,7 @@ jobs: name: rust_tcp_file_transfer_macos_x64_86 path: target/release/*transfer - download_then_release: + release: needs: [build_linux, build_windows, build_macos] runs-on: ubuntu-latest permissions: @@ -77,7 +77,12 @@ jobs: name: Download with: path: Downloads/ - - - name: Display Downloads - run: ls -R + + - name: Unzip + run: | + unzip *linux* -d linux/ + unzip *windows* -d windows/ + unzip *macos* -d macos/ + rm -f *.zip + ls -R working-directory: /home/runner/work/rust-tcp-file-transfer/rust-tcp-file-transfer/Downloads/ \ No newline at end of file