Fix artifact upload paths in CI workflow

- Change from specific path to wildcard pattern to ensure files are found
- Upload: dist/BTCPayServer.Plugins.Breez/**/*.btcpay -> dist/**/*.btcpay
- Release: plugin/BTCPayServer.Plugins.Breez/**/*.btcpay -> plugin/**/*.btcpay
- Add fetch-depth: 0 to ensure full checkout when triggered by tags
This commit is contained in:
2025-12-09 15:03:16 +01:00
parent e9899f3c43
commit e141ad16e3

View File

@@ -17,6 +17,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Fetch all history to ensure we have the latest workflow
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4