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