Skip to content

Commit

Permalink
fix the yml file for repro builds
Browse files Browse the repository at this point in the history
  • Loading branch information
nitesh authored and nitesh committed May 31, 2024
1 parent 7842eea commit 19efd6b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/reproducible_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,13 @@ jobs:
apt-get update
apt-get install -y curl unzip
- name: Build application
run: chmod +x build.sh && ./build.sh
run: yarn build-unsigned-android
- name: Find APK path
run: |
for f in android/app/build/outputs/apk/release/*.apk;
do
RENAMED_FILENAME=$(echo $f | sed -e "s/app-/blixt-/" | sed -e "s/-release-unsigned//")
mv $f $RENAMED_FILENAME
sha256sum $RENAMED_FILENAME
done && \
echo -e "\n" '

0 comments on commit 19efd6b

Please sign in to comment.