update version from 3.4.3 to 3.4.4 #113
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: Firebase Distribution action | |
on: [push] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Get sample .apk for test purposes | |
run: wget https://github.com/appium/appium/raw/master/sample-code/apps/ApiDemos-debug.apk | |
- name: Upload artifact to Firebase Distribution | |
uses: ./ | |
with: | |
appId: ${{secrets.FIREBASE_APP_ID}} | |
token: ${{secrets.FIREBASE_TOKEN}} | |
groups: Testers | |
file: ApiDemos-debug.apk |