image: reactnativecommunity/react-native-android cache: key: ${CI_COMMIT_REF_SLUG} paths: - node_modules/ - android/ - ios/ stages: - build build: stage: build before_script: - yarn install - export ANDROID_SDK_ROOT=/usr/lib/android-sdk script: - cd android - chmod +x gradlew && ./gradlew assembleRelease artifacts: name: "$CI_PROJECT_NAME-$CI_COMMIT_REF_NAME" paths: - android/app/build/outputs/apk/release/app-release.apk only: - staging - master