|
9 | 9 |
|
10 | 10 | jobs: |
11 | 11 | release-net9: |
12 | | - strategy: |
| 12 | + strategy: |
13 | 13 | matrix: |
14 | 14 | runtimeIdentifier: [linux-x64, linux-arm64, osx-x64, osx-arm64, win-x64, win-arm64] |
15 | 15 | project: [Cpp2IL] |
|
31 | 31 | with: |
32 | 32 | script: | |
33 | 33 | core.setOutput("extension", "${{ matrix.runtimeIdentifier }}" === "win-x64" ? ".exe" : ""); |
34 | | - |
| 34 | +
|
35 | 35 | let gitHash = "${{ steps.git-vars.outputs.git_hash }}"; |
36 | | - let runNumber = "${{ github.run_number }}"; |
| 36 | + let runNumber = "${{ github.run_number }}"; |
37 | 37 | let rawGitRef = "${{ steps.git-vars.outputs.git_branch }}"; |
38 | 38 | console.log("rawGitRef: " + rawGitRef); |
39 | 39 | let gitRef = rawGitRef.replace(/^refs\/heads\//, ""); |
|
91 | 91 | with: |
92 | 92 | script: | |
93 | 93 | let gitHash = "${{ steps.git-vars.outputs.git_hash }}"; |
94 | | - let runNumber = "${{ github.run_number }}"; |
| 94 | + let runNumber = "${{ github.run_number }}"; |
95 | 95 | let rawGitRef = "${{ steps.git-vars.outputs.git_branch }}"; |
96 | 96 | console.log("rawGitRef: " + rawGitRef); |
97 | 97 | let gitRef = rawGitRef.replace(/^refs\/heads\//, ""); |
@@ -124,4 +124,19 @@ jobs: |
124 | 124 | - name: Publish Cpp2IL.Core |
125 | 125 | if: github.event_name == 'push' |
126 | 126 | run: dotnet nuget push -s https://nuget.samboy.dev/v3/index.json -k ${{ secrets.NUGET_KEY }} ./Cpp2IL.Core/bin/Release/*.nupkg |
127 | | - |
| 127 | + - name: Publish Cpp2IL.Plugin.BuildReport |
| 128 | + if: github.event_name == 'push' |
| 129 | + run: dotnet nuget push -s https://nuget.samboy.dev/v3/index.json -k ${{ secrets.NUGET_KEY }} ./Cpp2IL.Plugin.BuildReport/bin/Release/*.nupkg |
| 130 | + - name: Publish Cpp2IL.Plugin.ControlFlowGraph |
| 131 | + if: github.event_name == 'push' |
| 132 | + run: dotnet nuget push -s https://nuget.samboy.dev/v3/index.json -k ${{ secrets.NUGET_KEY }} ./Cpp2IL.Plugin.ControlFlowGraph/bin/Release/*.nupkg |
| 133 | + - name: Publish Cpp2IL.Plugin.OrbisPkg |
| 134 | + if: github.event_name == 'push' |
| 135 | + run: dotnet nuget push -s https://nuget.samboy.dev/v3/index.json -k ${{ secrets.NUGET_KEY }} ./Cpp2IL.Plugin.OrbisPkg/bin/Release/*.nupkg |
| 136 | + - name: Publish Cpp2IL.Plugin.Pdb |
| 137 | + if: github.event_name == 'push' |
| 138 | + run: dotnet nuget push -s https://nuget.samboy.dev/v3/index.json -k ${{ secrets.NUGET_KEY }} ./Cpp2IL.Plugin.Pdb/bin/Release/*.nupkg |
| 139 | + - name: Publish Cpp2IL.Plugin.StrippedCodeRegSupport |
| 140 | + if: github.event_name == 'push' |
| 141 | + run: dotnet nuget push -s https://nuget.samboy.dev/v3/index.json -k ${{ secrets.NUGET_KEY }} ./Cpp2IL.Plugin.StrippedCodeRegSupport/bin/Release/*.nupkg |
| 142 | + |
0 commit comments