diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51c9787..36498e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: working-directory: ${{github.workspace}} run: | msbuild .\StompboxUI.sln /t:StompboxImageProcessor /p:Configuration="Release" - StompboxImageProcessor\bin\Release\net6.0-windows\StompboxImageProcessor.exe + StompboxImageProcessor\bin\Release\net8.0-windows\StompboxImageProcessor.exe - name: Run MSBuild working-directory: ${{github.workspace}} @@ -37,4 +37,4 @@ jobs: uses: actions/upload-artifact@v1 with: name: StompboxVST3Plugin - path: ${{github.workspace}}\StompboxPlugin\bin\Release\net6.0-windows + path: ${{github.workspace}}\StompboxPlugin\bin\Release\net8.0-windows diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c1d01c9..2617c0f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,14 +49,14 @@ jobs: working-directory: ${{github.workspace}} run: | msbuild .\StompboxUI.sln /t:StompboxImageProcessor /p:Configuration="Release" - StompboxImageProcessor\bin\Release\net6.0-windows\StompboxImageProcessor.exe + StompboxImageProcessor\bin\Release\net8.0-windows\StompboxImageProcessor.exe - name: Run MSBuild working-directory: ${{github.workspace}} run: msbuild .\StompboxUI.sln /t:StompboxPlugin /p:Configuration=Release - name: Add Plugin Archive - run: Compress-Archive -Path ${{github.workspace}}\StompboxPlugin\bin\Release\net6.0-windows\* -Destination StompboxVST3Plugin.zip + run: Compress-Archive -Path ${{github.workspace}}\StompboxPlugin\bin\Release\net8.0-windows\* -Destination StompboxVST3Plugin.zip - name: Upload Release Asset uses: actions/upload-release-asset@v1