Skip to content

Commit 6a194b9

Browse files
committed
Specifically, this merges [1e00ddc from that repo](AArnott/Library.Template@1e00ddc).
2 parents 8071142 + 1e00ddc commit 6a194b9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/renovate.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["config:recommended"],
4-
"semanticCommits": "disabled",
54
"labels": ["dependencies"],
65
"packageRules": [
76
{

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)