From 3d221bf91bb0394d19447804dc4c350c7f9c0218 Mon Sep 17 00:00:00 2001 From: IncognitoWater Date: Thu, 4 Jul 2024 12:37:51 +0200 Subject: [PATCH] IcWa - Test other publish changes --- .github/workflows/publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7b12c92..c384688 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -21,11 +21,11 @@ jobs: - name: Restore dependencies run: dotnet restore - name: Build - run: dotnet build --no-restore -c Release --output .\build + run: dotnet build --no-restore - name: Zip Plugin - run: Compress-Archive -Path .\build\* -DestinationPath .\build\EasyZoomReborn.zip + run: Compress-Archive -Path .\bin\Debug\net8.0-windows\* -DestinationPath .\bin\EasyZoomReborn.zip - name: Publish Plugin uses: softprops/action-gh-release@v2 with: - files: ./build/EasyZoomReborn.zip + files: ./bin/EasyZoomReborn.zip token: ${{ secrets.GITHUB_TOKEN }}