Skip to content

Commit

Permalink
create action
Browse files Browse the repository at this point in the history
add simple build action
  • Loading branch information
leanhtuan1994 authored Aug 10, 2021
1 parent 710b690 commit 6e25669
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
push:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: yarn

- name: Build android release
run: cd android && ./gradlew assembleRelease

- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
name: release
path: android/app/build/outputs/apk/release/app-release.apk


0 comments on commit 6e25669

Please sign in to comment.