Fix/adding postinstalls back #955
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: android-build-apk | |
on: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
branches: [ "**" ] | |
jobs: | |
install-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install yarn dependencies | |
run: | | |
yarn install | |
build-android: | |
needs: install-and-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install yarn dependencies | |
run: | | |
yarn install | |
- name: Build Android Release | |
run: | | |
cd client/android && ./gradlew assembleRelease | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: app-release.apk | |
path: android/app/build/outputs/apk/release/ |