From 4327ce469eb29ca3f2f1615018784cdcaed16314 Mon Sep 17 00:00:00 2001 From: praydog Date: Sun, 4 Feb 2024 06:18:58 -0800 Subject: [PATCH] Possible fix for nested actions zip --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 47a4b2f..687c4be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,13 +12,9 @@ jobs: dotnet-version: 6.0.x - run: dotnet publish --configuration Release - - name: Compress release - run: | - 7z a ${{github.workspace}}/ActionsRelease.zip ${{github.workspace}}/UEVR/bin/Release/net6.0-windows/win-x64/publish/*.* - - name: Upload artifacts uses: actions/upload-artifact@v3 with: name: UEVR - path: ${{github.workspace}}/ActionsRelease.zip + path: ${{github.workspace}}/UEVR/bin/Release/net6.0-windows/win-x64/publish/*.* if-no-files-found: error