From 18abd80b99020a2344f0296914c6e20f120336f5 Mon Sep 17 00:00:00 2001 From: NSGolova Date: Wed, 5 Mar 2025 15:29:34 +0000 Subject: [PATCH] fix: publish action uses .net version in a path --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 96e5610..253264e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -34,7 +34,7 @@ jobs: run: dotnet build --no-restore --configuration Release - name: Zip - run: Compress-Archive -Path .\GenericStripper\bin\Release\net7.0\* -DestinationPath GenericStripper.zip + run: Compress-Archive -Path .\GenericStripper\bin\Release\net9.0\* -DestinationPath GenericStripper.zip - name: Publish to Release run: gh release upload ${{ github.ref_name }} GenericStripper.zip --clobber