File tree Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Original file line number Diff line number Diff line change @@ -316,3 +316,53 @@ jobs:
316
316
name : ' [Publish]'
317
317
shell : pwsh
318
318
run : dotnet run/publish.dll --target=Publish${{ matrix.taskName }}
319
+
320
+ release :
321
+ name : Release
322
+ needs : [publish]
323
+ runs-on : windows-latest
324
+ env :
325
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
326
+ steps :
327
+ -
328
+ name : Checkout
329
+ uses : actions/checkout@v2
330
+ -
331
+ name : Fetch all history for all tags and branches
332
+ run : git fetch --prune --unshallow
333
+ -
334
+ name : Use cached cake frosting
335
+ id : cache-cake
336
+
337
+ with :
338
+ path : run
339
+ key : run-${{ runner.os }}-${{ hashFiles('./build/**') }}
340
+ -
341
+ name : Use cached tools
342
+ id : cache-tools
343
+
344
+ with :
345
+ path : tools
346
+ key : tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
347
+ -
348
+
349
+ name : Download native linux packages
350
+ with :
351
+ name : native-Linux
352
+ path : ${{ github.workspace }}/artifacts/packages/native
353
+ -
354
+
355
+ name : Download native windows packages
356
+ with :
357
+ name : native-Windows
358
+ path : ${{ github.workspace }}/artifacts/packages/native
359
+ -
360
+
361
+ name : Download native macos packages
362
+ with :
363
+ name : native-macOS
364
+ path : ${{ github.workspace }}/artifacts/packages/native
365
+ -
366
+ name : ' [Release]'
367
+ shell : pwsh
368
+ run : dotnet run/release.dll --target=PublishRelease
You can’t perform that action at this time.
0 commit comments