Skip to content

Commit

Permalink
fix build command
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-mullvad committed Jun 28, 2024
1 parent 5000404 commit a8be426
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/android-app-reproducible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
submodules: true

- name: Build (${{ matrix.type }}-${{ matrix.iteration }})
run: ${{ matrix.gradle-task }}
run: bash -c "${{ matrix.gradle-task }}"

- name: Upload (${{ matrix.type }}-${{ matrix.iteration }})
uses: actions/upload-artifact@v4
Expand All @@ -84,7 +84,7 @@ jobs:

verify-builds:
name: Verify builds
needs: [prepare]
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
Expand All @@ -95,3 +95,6 @@ jobs:

- name: Fix git dir
run: ls -al apks

- name: print checksums
run: find . -name "*.apk" | xargs sha256sum

0 comments on commit a8be426

Please sign in to comment.