From 7a13e982a86d267fa77af1698caf128f1660cc74 Mon Sep 17 00:00:00 2001 From: AeonLucid Date: Sat, 30 Oct 2021 19:44:21 +0200 Subject: [PATCH] Zip artifact --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 908b4d9..33556a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,8 +34,11 @@ jobs: - name: Build Prospect.Launcher run: dotnet publish -o ./build-app -r win-x64 -c Release -v minimal ${{env.PROJ_LAUNCHER}} + - name: Compress Prospect.Launcher + run: 7z a launcher.zip ./build-app/* + - uses: actions/upload-artifact@v2 with: name: Prospect.Launcher - path: ./build-app/ + path: ./launcher.zip retention-days: 14