Skip to content

Commit 5f3a844

Browse files
committed
Upload binlogs for troubleshooting purposes
1 parent 3b6886b commit 5f3a844

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/publish.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,27 @@ jobs:
3535
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
3636
3737
- 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
3946

4047
- name: 🧪 test
4148
uses: ./.github/workflows/test
4249

4350
- 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
4559

4660
- name: 🚀 nuget
4761
run: dotnet nuget push ./bin/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate

0 commit comments

Comments
 (0)