add profile edit screen #17
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: Build APK | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
cache: 'gradle' | |
- name: chmod gradlew | |
run: chmod +x gradlew | |
- name: Build the APK | |
run: ./gradlew assembleDebug | |
- name: Upload the APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: argos | |
path: androidApp/build/outputs/apk/debug/androidApp-debug.apk |