We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 81ff341 + 161bac9 commit 17a708eCopy full SHA for 17a708e
.config/dotnet-tools.json
@@ -10,7 +10,7 @@
10
"rollForward": false
11
},
12
"dotnet-coverage": {
13
- "version": "17.14.1",
+ "version": "17.14.2",
14
"commands": [
15
"dotnet-coverage"
16
],
.github/workflows/release.yml
@@ -74,11 +74,11 @@ jobs:
74
75
- name: 💽 Upload artifacts to release
76
shell: pwsh
77
- if: ${{ github.event.release.assets_url }} != ''
+ if: ${{ github.event_name == 'release' && github.event.release.assets_url != '' }}
78
env:
79
GH_TOKEN: ${{ github.token }}
80
run: |
81
- Get-ChildItem '${{ runner.temp }}/deployables' |% {
+ Get-ChildItem '${{ runner.temp }}/deployables' -File -Recurse |% {
82
Write-Host "Uploading $($_.Name) to release..."
83
gh release -R ${{ github.repository }} upload "${{ github.ref_name }}" $_.FullName
84
}
0 commit comments