Last active
October 25, 2019 08:41
-
-
Save wzieba/9ab4c5c18b5502351bb7efb9541c9d5e to your computer and use it in GitHub Desktop.
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: Example workflow for 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment