@@ -11,40 +11,39 @@ jobs:
1111 strategy :
1212 fail-fast : false
1313 matrix :
14- os : [windows-2025-vs2026, ubuntu-24.04, macos-26]
14+ os : [ windows-2025-vs2026, ubuntu-24.04, macos-26 ]
1515
1616 runs-on : ${{ matrix.os }}
1717 steps :
18- -
19- name : Checkout
20- uses : actions/checkout@v6
21- with :
22- fetch-depth : 0
23- -
24- name : Restore State
25- uses : ./.github/actions/cache-restore
26- -
27- name : ' [Build]'
28- shell : pwsh
29- run : dotnet run/build.dll --target=Package
30- -
31- name : ' Upload nuget packages'
32- uses : actions/upload-artifact@v7
33- if : matrix.os == 'windows-2025-vs2026'
34- with :
35- name : nuget
36- path : ${{ github.workspace }}/artifacts/packages/nuget
37- -
38- name : ' Upload native packages'
39- uses : actions/upload-artifact@v7
40- if : matrix.os == 'windows-2025-vs2026'
41- with :
42- name : native-${{ runner.os }}
43- path : ${{ github.workspace }}/artifacts/packages/native/*.zip
44- -
45- name : ' Upload native packages'
46- uses : actions/upload-artifact@v7
47- if : matrix.os != 'windows-2025-vs2026'
48- with :
49- name : native-${{ runner.os }}
50- path : ${{ github.workspace }}/artifacts/packages/native/*.tar.gz
18+ - name : Checkout
19+ uses : actions/checkout@v6
20+ with :
21+ fetch-depth : 0
22+
23+ - name : Restore State
24+ uses : ./.github/actions/cache-restore
25+
26+ - name : ' [Build]'
27+ shell : pwsh
28+ run : dotnet run/build.dll --target=Package
29+
30+ - name : ' Upload nuget packages'
31+ uses : actions/upload-artifact@v7
32+ if : matrix.os == 'windows-2025-vs2026'
33+ with :
34+ name : nuget
35+ path : ${{ github.workspace }}/artifacts/packages/nuget
36+
37+ - name : ' Upload native packages'
38+ uses : actions/upload-artifact@v7
39+ if : matrix.os == 'windows-2025-vs2026'
40+ with :
41+ name : native-${{ runner.os }}
42+ path : ${{ github.workspace }}/artifacts/packages/native/*.zip
43+
44+ - name : ' Upload native packages'
45+ uses : actions/upload-artifact@v7
46+ if : matrix.os != 'windows-2025-vs2026'
47+ with :
48+ name : native-${{ runner.os }}
49+ path : ${{ github.workspace }}/artifacts/packages/native/*.tar.gz
0 commit comments