File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
33 "extends" : [" config:recommended" ],
4- "semanticCommits" : " disabled" ,
54 "labels" : [" dependencies" ],
65 "packageRules" : [
76 {
Original file line number Diff line number Diff line change @@ -93,11 +93,11 @@ jobs:
9393
9494 - name : 💽 Upload artifacts to release
9595 shell : pwsh
96- if : ${{ github.event.release.assets_url }} != ''
96+ if : ${{ github.event_name == 'release' && github. event.release.assets_url != '' }}
9797 env :
9898 GH_TOKEN : ${{ github.token }}
9999 run : |
100- Get-ChildItem '${{ runner.temp }}/deployables' |% {
100+ Get-ChildItem '${{ runner.temp }}/deployables' -File -Recurse |% {
101101 Write-Host "Uploading $($_.Name) to release..."
102102 gh release -R ${{ github.repository }} upload "${{ github.ref_name }}" $_.FullName
103103 }
You can’t perform that action at this time.
0 commit comments