From 073396b3a503133d0fc2bc88f0b05936e5c5bd17 Mon Sep 17 00:00:00 2001 From: IncognitoWater Date: Thu, 4 Jul 2024 12:31:47 +0200 Subject: [PATCH] IcWa - Try some workflow 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 b496eed..7b12c92 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 + run: dotnet build --no-restore -c Release --output .\build - name: Zip Plugin - run: Compress-Archive -Path .\bin\* -DestinationPath .\bin\EasyZoomReborn.zip + run: Compress-Archive -Path .\build\* -DestinationPath .\build\EasyZoomReborn.zip - name: Publish Plugin uses: softprops/action-gh-release@v2 with: - files: ./bin/EasyZoomReborn.zip + files: ./build/EasyZoomReborn.zip token: ${{ secrets.GITHUB_TOKEN }}