File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -103,17 +103,26 @@ jobs:
103103
104104 - name : Build project (full)
105105 if : inputs.package-type == 'Full'
106- run : dotnet build DryWetMidi/Melanchall.DryWetMidi.csproj --configuration ${{ vars.BUILD_CONFIGURATION || 'Release' }}
106+ run : dotnet build DryWetMidi/Melanchall.DryWetMidi.csproj --configuration ${{ vars.BUILD_CONFIGURATION }}
107107
108108 - name : Build project (nativeless)
109109 if : inputs.package-type == 'Nativeless'
110- run : dotnet build DryWetMidi/Melanchall.DryWetMidi.csproj --configuration ${{ vars.BUILD_CONFIGURATION_NATIVELESS || 'ReleaseNativeless' }}
110+ run : dotnet build DryWetMidi/Melanchall.DryWetMidi.csproj --configuration ${{ vars.BUILD_CONFIGURATION_NATIVELESS }}
111111
112- - name : Create NuGet package
112+ - name : Create NuGet package (full)
113113 run : |
114114 dotnet pack DryWetMidi/Melanchall.DryWetMidi.csproj `
115115 --no-build `
116116 --output NuGetPackage `
117+ --configuration ${{ vars.BUILD_CONFIGURATION }} `
118+ -p:RepositoryBranch="${{ github.ref_name }}"
119+
120+ - name : Create NuGet package (nativeless)
121+ run : |
122+ dotnet pack DryWetMidi/Melanchall.DryWetMidi.csproj `
123+ --no-build `
124+ --output NuGetPackage `
125+ --configuration ${{ vars.BUILD_CONFIGURATION_NATIVELESS }} `
117126 -p:RepositoryBranch="${{ github.ref_name }}"
118127
119128 - name : Upload NuGet package
You can’t perform that action at this time.
0 commit comments