mirror of
https://github.com/TanelOrumaa/Estonian-ID-card-mobile-authenticator-POC.git
synced 2024-12-22 04:20:16 +02:00
MOB-9 create apk with github action
This commit is contained in:
parent
1da4466e1c
commit
724ff0a869
32
.github/workflows/main.yml
vendored
Normal file
32
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./MobileAuthApp
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: gradlew permission
|
||||
run: chmod +x ./gradlew
|
||||
|
||||
- name: run gradlew
|
||||
run: ./gradlew assembleDebug
|
||||
|
||||
- name: upload apk
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: apk
|
||||
path: MobileAuthApp/app/build/outputs/apk/debug/app-debug.apk
|
Loading…
Reference in New Issue
Block a user