Skip to content

Commit

Permalink
Fixed pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshayman committed Oct 13, 2023
1 parent e5ddaf3 commit 52e7083
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: Build Android
on:
push:
branches:
- develop
jobs:
build-testing:
if: github.ref == 'refs/heads/develop'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js v14
- name: Use Node.js v16
uses: actions/setup-node@v1
with:
node-version: 16.x
Expand Down Expand Up @@ -53,9 +58,9 @@ jobs:
run: ls -lrt android/app/build/outputs/apk/debug

- name: upload artifact to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1.2.1
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
appId: ${{secrets.FIREBASE_APP_ID}}
token: ${{secrets.FIREBASE_TOKEN}}
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: ${{secrets.GROUPS}}
file: android/app/build/outputs/apk/debug/app-debug.apk
file: android/app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 52e7083

Please sign in to comment.