We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a2a80b commit 0b82269Copy full SHA for 0b82269
1 file changed
.github/workflows/internal-test-plugin-nuget.yml
@@ -13,7 +13,11 @@ env:
13
NuGetDirectory: ${{ github.workspace}}/nuget
14
15
jobs:
16
+
17
build:
18
+ strategy:
19
+ matrix:
20
+ dotnet-version: [ 5.x, 7.x, 9.x ]
21
runs-on: ubuntu-22.04
22
steps:
23
- uses: actions/checkout@v4
@@ -40,10 +44,11 @@ jobs:
40
44
ksp-zip-url: https://github.com/KSPModdingLibs/KSPLibs/raw/main/KSP-1.12.5.zip
41
45
working-directory: ${{ env.TESTDIR }}
42
46
solution-file-path: plugin-mod-nuget.csproj
47
+ dotnet-version: ${{ matrix.dotnet-version }}
43
48
env:
49
KSPBuildToolsVersion: ${{ inputs.package-version }}
50
51
- uses: ./.github/actions/assemble-release
52
with:
53
artifacts: ${{ env.TESTDIR }}/GameData
- output-file-name: plugin-mod-nuget
54
+ output-file-name: plugin-mod-nuget-${{ matrix.dotnet-version }}
0 commit comments