Fix artifact upload path pattern in CI

- 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
- This ensures the .btcpay files are captured regardless of version subdirectory structure
This commit is contained in:
2025-12-09 13:57:41 +01:00
parent 2531edb5c3
commit e9899f3c43

View File

@@ -55,7 +55,7 @@ jobs:
with:
name: ${{ env.PLUGIN_ARTIFACT_NAME }}
path: |
dist/BTCPayServer.Plugins.Breez/**/*.btcpay
dist/**/*.btcpay
if-no-files-found: error
release:
@@ -73,5 +73,5 @@ jobs:
- name: Upload to GitHub Release
uses: softprops/action-gh-release@v2
with:
files: plugin/BTCPayServer.Plugins.Breez/**/*.btcpay
files: plugin/**/*.btcpay
fail_on_unmatched_files: true