Skip to content

Commit

Permalink
Skip Upload Artifact step on build workflow for android
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkabuki committed Sep 15, 2023
1 parent b890ece commit e0e0747
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/deploy-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,14 @@ jobs:
- name: "Build for Android"
run: cd ./packages/mobile/android && ENVFILE=../.env.production ./gradlew bundleStandardRelease

- name: "Upload Artifact"
continue-on-error: true
uses: actions/upload-artifact@v2
with:
name: app-standard-release.aab
path: ./packages/mobile/android/app/build/outputs/bundle/standardRelease/app-standard-release.aab
retention-days: 5
# Temporary disable, failing on CI
# - name: "Upload Artifact"
# continue-on-error: true
# uses: actions/upload-artifact@v2
# with:
# name: app-standard-release.aab
# path: ./packages/mobile/android/app/build/outputs/bundle/standardRelease/app-standard-release.aab
# retention-days: 5

- name: "Configure Google Play upload"
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object Utils {
outputStreamWriter.append("$data \n")
outputStreamWriter.close()
} catch (e: IOException) {
Log.e("Worker", "File write failed: $e")
Log.e("Worker", "File write failed at: $e")
}
}

Expand Down

0 comments on commit e0e0747

Please sign in to comment.