Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/buildAndroid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,19 +214,25 @@ jobs:
if: ${{ inputs.variant == 'Adhoc' }}
run: echo "ARTIFACT_URL=$ARTIFACT_URL" >> "$GITHUB_OUTPUT"

- name: Collect build artifacts
run: |
mkdir -p /tmp/android-artifacts
find Mobile-Expensify/Android/app/build/outputs/bundle -name '*.aab' -exec cp {} /tmp/android-artifacts/ \;
find Mobile-Expensify/Android/build/generated/sourcemaps/react -name 'index.android.bundle.map' -exec cp {} /tmp/android-artifacts/ \;

- name: Find and upload AAB artifact
# v6
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
with:
name: ${{ inputs.artifact-prefix }}androidBuild-artifact
path: Mobile-Expensify/Android/app/build/outputs/bundle/release/*.aab
path: /tmp/android-artifacts/*.aab

- name: Upload Android sourcemap artifact
# v6
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
with:
name: ${{ inputs.artifact-prefix }}android-sourcemap-artifact
path: Mobile-Expensify/Android/build/generated/sourcemaps/react/release/index.android.bundle.map
path: /tmp/android-artifacts/index.android.bundle.map

- name: Install bundletool
run: |
Expand Down
Loading