From 5ed10ec42ee762870298ef66d276f88ed419fb5d Mon Sep 17 00:00:00 2001 From: ggman12 Date: Thu, 12 Feb 2026 19:32:34 -0500 Subject: [PATCH] update --- .github/workflows/openairframes-daily-release.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/openairframes-daily-release.yaml b/.github/workflows/openairframes-daily-release.yaml index 044629f..7f684bf 100644 --- a/.github/workflows/openairframes-daily-release.yaml +++ b/.github/workflows/openairframes-daily-release.yaml @@ -266,6 +266,13 @@ jobs: needs: [build-faa, adsb-reduce, build-community] if: github.event_name != 'schedule' steps: + - name: Checkout for gh CLI + uses: actions/checkout@v4 + with: + sparse-checkout: | + .github + sparse-checkout-cone-mode: false + - name: Download FAA artifacts uses: actions/download-artifact@v4 with: @@ -286,6 +293,8 @@ jobs: - name: Debug artifact structure run: | + echo "=== Full artifacts tree ===" + find artifacts -type f 2>/dev/null || echo "No files found in artifacts" echo "=== FAA artifacts ===" find artifacts/faa -type f 2>/dev/null || echo "No files found in artifacts/faa" echo "=== ADS-B artifacts ===" @@ -356,9 +365,6 @@ jobs: echo " Community CSV: $CSV_FILE_COMMUNITY" echo " ZIP: $ZIP_FILE" - - name: Checkout for gh CLI - uses: actions/checkout@v4 - - name: Delete existing release if exists run: | echo "Attempting to delete release: ${{ steps.meta.outputs.tag }}"