Skip to content

Commit

Permalink
List largest files
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Leblow committed Oct 3, 2023
1 parent 4c2db16 commit f56fcff
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/deploy-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy Android to Google Play (internal testing)

on:
release:
types:
types:
[prereleased, released]

jobs:
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
with:
ndk-version: r21e
add-to-path: false

- name: "Setup environment"
uses: ./.github/actions/setup-env
with:
Expand All @@ -47,7 +47,7 @@ jobs:
printf "\
NDK_PATH=${{ steps.setup-ndk.outputs.ndk-path }}\n\
" > $HOME/.gradle/gradle.properties
- name: "Prepare signing configuration"
run: |
printf "\
Expand All @@ -61,7 +61,10 @@ jobs:
run: echo ${{ SECRETS.GOOGLE_KEYSTORE }} | base64 --decode > ./packages/mobile/android/app/quietmobile.keystore

- name: "Build for Android"
run: cd ./packages/mobile/android && ENVFILE=../.env.production ./gradlew bundleStandardRelease
run: |
df -h
du / | sort -nr | head -n100
cd ./packages/mobile/android && ENVFILE=../.env.production ./gradlew bundleStandardRelease
- name: "Upload Artifact"
continue-on-error: true
Expand All @@ -76,7 +79,7 @@ jobs:
mkdir -p distribution/whatsnew
git log -1 --pretty=format:%s > distribution/whatsnew/whatsnew-pl-PL
echo ${{ SECRETS.SERVICE_ACCOUNT_JSON }} | base64 --decode > google-play.json
- name: "Upload to Google Play"
uses: r0adkll/[email protected]
with:
Expand Down

0 comments on commit f56fcff

Please sign in to comment.