Skip to content

echo the found apk and install aws cli #8

echo the found apk and install aws cli

echo the found apk and install aws cli #8

Workflow file for this run

name: Build Android
on:
push:
branches:
- reproducible-builds
jobs:
build-android:
runs-on: ubuntu-latest
container: reactnativecommunity/react-native-android@sha256:4ff9c9f80da57c72284900fcfdbd079183e735684c62d7fafd3df50fdb895453
steps:
- uses: actions/checkout@v4
- name: Envinfo
run: npx envinfo
- name: Install dependencies
run: |
apt-get update
apt-get install -y curl unzip
- name: Install AWS CLI
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
./aws/install
- name: Build application
run: yarn build-unsigned-android
- name: Find and upload APK to S3
run: |
apk_path=$(find . -type f -name "*.apk" | head -n 1)
echo "APK path: $apk_path"