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