From cce9aa5e97b9462c3c20d2c1d8415045f06d671a Mon Sep 17 00:00:00 2001 From: Dimitrij Date: Fri, 8 Aug 2025 02:19:47 +0100 Subject: [PATCH] Update Build mR-NB.yml fix --- .github/workflows/Build mR-NB.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Build mR-NB.yml b/.github/workflows/Build mR-NB.yml index 90aab4b2..6cfe4058 100644 --- a/.github/workflows/Build mR-NB.yml +++ b/.github/workflows/Build mR-NB.yml @@ -41,6 +41,7 @@ jobs: run: msbuild "$Env:GITHUB_WORKSPACE\mRemoteNG.sln" -p:Configuration="Release" -p:Platform=x64 /verbosity:minimal - name: 07. Compress Release Output + id: zipstep shell: pwsh run: | $assemblyInfoPath = "${{ github.workspace }}\mRemoteNG\Properties\AssemblyInfo.cs" @@ -62,12 +63,11 @@ jobs: [System.IO.Compression.ZipFile]::CreateFromDirectory($source, $destination) echo "zipname=$zipName" >> $env:GITHUB_OUTPUT - - name: 08. Upload Artifact + - name: 08. Upload Final ZIP as Artifact uses: actions/upload-artifact@v4 with: - asset_path: ${{ github.workspace }}/${{ steps.zipstep.outputs.zipname }} - asset_name: ${{ steps.zipstep.outputs.zipname }} - if-no-files-found: error + name: ${{ steps.zipstep.outputs.zipname }} + path: ${{ github.workspace }}/${{ steps.zipstep.outputs.zipname }} Create-Release: needs: [Build-Release]