File tree 1 file changed +16
-2
lines changed
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,27 @@ jobs:
35
35
echo Chromium build https://crrev.com/$(curl --silent https://download-chromium.appspot.com/rev/Linux_x64?type=snapshots | grep -oP "\d{6,}") > src/chromium.linux-x64/readme.md
36
36
37
37
- name : 🙏 build
38
- run : dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v}
38
+ run : dotnet build -p:version=${GITHUB_REF#refs/*/v}
39
+
40
+ - name : 📦 binlog
41
+ uses : actions/upload-artifact@v3
42
+ if : always()
43
+ with :
44
+ name : binlog-build-${{ github.run_number }}
45
+ path : msbuild.binlog
39
46
40
47
- name : 🧪 test
41
48
uses : ./.github/workflows/test
42
49
43
50
- name : 📦 pack
44
- run : dotnet pack -m:1 -p:version=${GITHUB_REF#refs/*/v}
51
+ run : dotnet pack -p:version=${GITHUB_REF#refs/*/v}
52
+
53
+ - name : 📦 binlog
54
+ uses : actions/upload-artifact@v3
55
+ if : always()
56
+ with :
57
+ name : binlog-pack-${{ github.run_number }}
58
+ path : msbuild.binlog
45
59
46
60
- name : 🚀 nuget
47
61
run : dotnet nuget push ./bin/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
You can’t perform that action at this time.
0 commit comments