diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aacfe1a..f6f5bd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET Core SDK uses: actions/setup-dotnet@v1 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Restore run: dotnet restore - name: Build @@ -30,14 +30,14 @@ jobs: working-directory: src/openlauncher run: dotnet publish -c Release -r ${{ matrix.rid }} --self-contained - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: "OpenLauncher-${{ matrix.rid }}" - path: src/openlauncher/bin/Release/net7.0/${{ matrix.rid }}/publish/**/* + path: src/openlauncher/bin/Release/net8.0/${{ matrix.rid }}/publish/**/* - name: Create release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/v') with: files: | - src/openlauncher/bin/Release/net7.0/${{ matrix.rid }}/publish/openlauncher - src/openlauncher/bin/Release/net7.0/${{ matrix.rid }}/publish/openlauncher.exe + src/openlauncher/bin/Release/net8.0/${{ matrix.rid }}/publish/openlauncher + src/openlauncher/bin/Release/net8.0/${{ matrix.rid }}/publish/openlauncher.exe