From 1c36a70d60eb0fb6c12443ffd2281fc25cb599ca Mon Sep 17 00:00:00 2001 From: Dagen Brock Date: Tue, 9 Jun 2020 11:41:43 -0500 Subject: [PATCH] windows app dir rename --- .github/workflows/release.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 38bc535..6d3ab52 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -90,22 +90,20 @@ jobs: if: matrix.os == 'windows-latest' working-directory: ./buckshot run: | - mkdir app - cp release\buckshot.exe app - windeployqt app - cp README.md app + mkdir buckshot + cp release\buckshot.exe buckshot + windeployqt buckshot + cp ../README.md buckshot + cp ../LICENSE.txt buckshot $url = "https://github.com/digarok/b2d/releases/download/v1.4/b2d-windows-latest-v1.4.zip" Invoke-WebRequest -Uri $url -OutFile b2d.zip 7z.exe x b2d.zip - dir - cp b2d.exe app + cp b2d.exe buckshot $url = "https://github.com/digarok/cadius/releases/download/0.0.0/cadius-windows-latest-0.0.0.zip" Invoke-WebRequest -Uri $url -OutFile cadius.zip 7z.exe x cadius.zip - dir - cp build/Src/Debug/Cadius.exe app - - 7z.exe a buckshot.zip app\* + cp build/Src/Debug/Cadius.exe buckshot + 7z.exe a buckshot.zip buckshot\* mv buckshot.zip ..