mirror of
https://github.com/aljazceru/btcpayserver-breez-nodeless-plugin.git
synced 2025-12-17 00:24:22 +01:00
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:
4
.github/workflows/build-and-release.yml
vendored
4
.github/workflows/build-and-release.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user