mirror of
https://github.com/aljazceru/btcpayserver-breez-nodeless-plugin.git
synced 2025-12-17 08:34:20 +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:
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user