Skip to content

Commit a8be426

Browse files
committed
fix build command
1 parent 5000404 commit a8be426

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/android-app-reproducible.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
submodules: true
7373

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

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

8585
verify-builds:
8686
name: Verify builds
87-
needs: [prepare]
87+
needs: [build]
8888
runs-on: ubuntu-latest
8989
steps:
9090
- uses: actions/download-artifact@v4
@@ -95,3 +95,6 @@ jobs:
9595

9696
- name: Fix git dir
9797
run: ls -al apks
98+
99+
- name: print checksums
100+
run: find . -name "*.apk" | xargs sha256sum

0 commit comments

Comments
 (0)