Skip to content

Commit 17a708e

Browse files
committedMar 3, 2025
Merge remote-tracking branch 'origin/main' into microbuild
2 parents 81ff341 + 161bac9 commit 17a708e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"rollForward": false
1111
},
1212
"dotnet-coverage": {
13-
"version": "17.14.1",
13+
"version": "17.14.2",
1414
"commands": [
1515
"dotnet-coverage"
1616
],

‎.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ jobs:
7474

7575
- name: 💽 Upload artifacts to release
7676
shell: pwsh
77-
if: ${{ github.event.release.assets_url }} != ''
77+
if: ${{ github.event_name == 'release' && github.event.release.assets_url != '' }}
7878
env:
7979
GH_TOKEN: ${{ github.token }}
8080
run: |
81-
Get-ChildItem '${{ runner.temp }}/deployables' |% {
81+
Get-ChildItem '${{ runner.temp }}/deployables' -File -Recurse |% {
8282
Write-Host "Uploading $($_.Name) to release..."
8383
gh release -R ${{ github.repository }} upload "${{ github.ref_name }}" $_.FullName
8484
}

0 commit comments

Comments
 (0)
Failed to load comments.