diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/android-reproducible-builds.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/android-reproducible-builds.yml b/.github/workflows/android-reproducible-builds.yml index 9b9eb9504c..db468fdec5 100644 --- a/.github/workflows/android-reproducible-builds.yml +++ b/.github/workflows/android-reproducible-builds.yml @@ -138,8 +138,14 @@ jobs: build-using-nix: name: Build fdroid variant using nix - runs-on: ubuntu-24.04 + runs-on: ${{ matrix.runs-on }} needs: set-up-env + strategy: + fail-fast: false + matrix: + include: + - runs-on: ubuntu-latest + - runs-on: macos-latest steps: - name: Checkout repository uses: actions/checkout@v4 @@ -162,7 +168,7 @@ jobs: - name: Upload apks uses: actions/upload-artifact@v4 with: - name: apk-nix + name: apk-nix-${{ matrix.runs-on }} path: android/app/build/outputs/apk/ossProd/fdroid/app-oss-prod-fdroid-unsigned.apk if-no-files-found: error retention-days: 7 |
