We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae50f1f commit 6022449Copy full SHA for 6022449
1 file changed
.github/workflows/build-natives.yml
@@ -217,10 +217,18 @@ jobs:
217
- name: Setup dev environment
218
run: 'true'
219
220
+ - name: Restore
221
+ run: >
222
+ dotnet restore Natives/NetCord.Natives/NetCord.Natives.slnx
223
+ -v ${{ env.DotnetVerbose }}
224
+ ${{ env.GenerateBinLog == 'true' && '-bl:restore.binlog' || '' }}
225
+
226
- name: Pack Natives NuGet Package
227
id: pack_step
228
run: >
- dotnet pack Natives/NetCord.Natives/NetCord.Natives.csproj --no-restore --no-build -v ${{ env.DotnetVerbose }}
229
+ dotnet pack Natives/NetCord.Natives/NetCord.Natives.csproj
230
+ --no-restore
231
232
${{ env.GenerateBinLog == 'true' && '-bl:pack.binlog' || '' }}
233
-p:VcpkgArtifactsRoot=${{ github.workspace }}/artifacts/natives-build/
234
-o ${{ github.workspace }}/
0 commit comments