From 1c418a57ea09b0c6af6fde22e9d0ddee16b53e7a Mon Sep 17 00:00:00 2001 From: Austin Date: Tue, 12 May 2026 06:56:11 -0400 Subject: [PATCH] Actions: fix Flatpak source file patterns for jq (#5415) Co-authored-by: Copilot --- .github/workflows/release.yml | 8 ++++---- .github/workflows/reusable-check.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 261937802..24cd59e57 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -391,14 +391,14 @@ jobs: --no-configuration-cache --refresh-dependencies --no-parallel - name: List Flatpak source files - run: ls -R flatpak-sources*.json + run: ls -R flatpak-sources-*.json - name: Upload Flatpak source artifacts if: always() uses: actions/upload-artifact@v7 with: name: flatpak-multisrc-${{ runner.arch }} - path: flatpak-sources*.json + path: flatpak-sources-*.json retention-days: 1 release-flatpak-src: @@ -413,11 +413,11 @@ jobs: merge-multiple: true - name: List Flatpak source files - run: ls -R flatpak-sources*.json + run: ls -R flatpak-sources-*.json - name: Combine Flatpak source files run: > - jq -s 'add | unique_by(.dest + "/" + .["dest-filename"])' flatpak-sources*.json + jq -s 'add | unique_by(.dest + "/" + .["dest-filename"])' flatpak-sources-*.json > flatpak-sources.json - name: Upload combined Flatpak source artifact diff --git a/.github/workflows/reusable-check.yml b/.github/workflows/reusable-check.yml index eb579119f..6e0c83650 100644 --- a/.github/workflows/reusable-check.yml +++ b/.github/workflows/reusable-check.yml @@ -557,12 +557,12 @@ jobs: ./gradlew :build-logic:convention:flatpakGradleGenerator flatpakGradleGenerator --no-configuration-cache --refresh-dependencies --no-parallel - - run: ls -lah flatpak-sources*.json + - run: ls -lah flatpak-sources-*.json - name: Upload Flatpak Sources if: ${{ inputs.upload_artifacts }} uses: actions/upload-artifact@v7 with: name: flatpak-sources-${{ runner.arch }} - path: flatpak-sources*.json + path: flatpak-sources-*.json retention-days: 7