From e141ad16e36f737348aea84a288abc68c9f912a1 Mon Sep 17 00:00:00 2001 From: Aljaz Ceru Date: Tue, 9 Dec 2025 15:03:16 +0100 Subject: [PATCH] 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 --- .github/workflows/build-and-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 215de4b..9b8c217 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -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