Skip to content

Commit

Permalink
[INFRA] Add github action to deploy to firebase
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkrauz committed Oct 23, 2020
1 parent 6539a99 commit ea5b668
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on:
push:
branches:
- develop

jobs:
deploy-to-firebase:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: ./gradlew build
- uses: wzieba/Firebase-Distribution-Github-Action@v1.2.2
with:
appId: ${{secrets.FIREBASE_APP_ID}}
token: ${{secrets.FIREBASE_TOKEN}}
groups: ${{secrets.FIREBASE_TESTER_GROUP}}
file: app/build/outputs/apk/beta/app-beta.apk

0 comments on commit ea5b668

Please sign in to comment.