All Projects → wzieba → Firebase Distribution Github Action

wzieba / Firebase Distribution Github Action

Licence: mit
This action uploads artifacts (.apk or .ipa) to Firebase App Distribution.

Programming Languages

shell
77523 projects

Labels

Projects that are alternatives of or similar to Firebase Distribution Github Action

App Info Parser
A javascript parser for parsing .ipa or .apk files. IPA/APK文件 js 解析器
Stars: ✭ 298 (+152.54%)
Mutual labels:  apk, ipa
Command Mobile Penetration Testing Cheatsheet
Mobile penetration testing android & iOS command cheatsheet
Stars: ✭ 221 (+87.29%)
Mutual labels:  apk, ipa
Appdeploy
🚀 AppDeploy is the fastest way to get info on your mobile app & deploy it OTA without specific server configuration
Stars: ✭ 166 (+40.68%)
Mutual labels:  apk, ipa
TransporterPad
iOS/Android app deployment tool for macOS
Stars: ✭ 51 (-56.78%)
Mutual labels:  apk, ipa
AppCenter-Github-Action
This action uploads artifacts (.apk or .ipa) to Visual Studio App Center.
Stars: ✭ 46 (-61.02%)
Mutual labels:  apk, ipa
ota-server
OTA Server for both Android app and iOS app
Stars: ✭ 30 (-74.58%)
Mutual labels:  apk, ipa
react-native-decompiler
Decompile React Native Android/IOS Bundle.
Stars: ✭ 78 (-33.9%)
Mutual labels:  apk, ipa
app info
Teardown tool for mobile app (ipa, apk and aab file) and dSYM.zip file, analysis metedata like version, name, icon etc.
Stars: ✭ 32 (-72.88%)
Mutual labels:  apk, ipa
Appinfoscanner
一款适用于以HW行动/红队/渗透测试团队为场景的移动端(Android、iOS、WEB、H5、静态网站)信息收集扫描工具,可以帮助渗透测试工程师、攻击队成员、红队成员快速收集到移动端或者静态WEB站点中关键的资产信息并提供基本的信息输出,如:Title、Domain、CDN、指纹信息、状态信息等。
Stars: ✭ 424 (+259.32%)
Mutual labels:  apk, ipa
Xdupdate
Android 自动更新 / 阿里云 OSS 一键上传更新 (Android auto update / upload update by aliyun OSS)
Stars: ✭ 92 (-22.03%)
Mutual labels:  apk
Xupdate
🚀A lightweight, high availability Android version update framework.(一个轻量级、高可用性的Android版本更新框架)
Stars: ✭ 1,688 (+1330.51%)
Mutual labels:  apk
Androidanimationexercise
Android 动画各种实现,包括帧动画、补间动画和属性动画的总结分享
Stars: ✭ 1,254 (+962.71%)
Mutual labels:  apk
Guarda Android Wallets
Mobile cryptocurrency wallets for Android
Stars: ✭ 95 (-19.49%)
Mutual labels:  apk
Uber Adb Tools
A tool that enables advanced features through adb installing and uninstalling apps like wildcards and multi device support. Useful if you want to clean your test device from all company apks or install a lot of apks in one go. Written in Java so it should run on your platform.
Stars: ✭ 106 (-10.17%)
Mutual labels:  apk
Nodebase
Android NodeJS Platform to Build Sharable Application
Stars: ✭ 86 (-27.12%)
Mutual labels:  apk
Apktrack
ApkTrack is an Android app which checks if updates for installed APKs are available.
Stars: ✭ 111 (-5.93%)
Mutual labels:  apk
Updater
基于DownloadManager封装的更新器,使用超简单!
Stars: ✭ 82 (-30.51%)
Mutual labels:  apk
Backgroundupdate
后台更新APP(两句代码实现)
Stars: ✭ 80 (-32.2%)
Mutual labels:  apk
Pogo assets
Repository of all mined assets including sprites, news items, sound files, translations, and 3D Assets for Pokemon GO.
Stars: ✭ 116 (-1.69%)
Mutual labels:  apk
Gamehelper
游戏、应用辅助App。目前支持1、微信《跳一跳》,可实现“手动”以及“自动”寻找位置跳跃;2、旅行青蛙,支持修改三叶草数量以及奖券数量;3、淘宝直播刷赞,刷评论。如有问题请随时反馈!
Stars: ✭ 111 (-5.93%)
Mutual labels:  apk

Firebase App Distribution Github Action

This action uploads artifacts (.apk or .ipa) to Firebase App Distribution.

Inputs

appId

Required App id can be found on the General Settings page

Either Firebase Token or Service Credentials File, one is enough.

token

Required Upload token - see Firebase CLI Reference (tldr; run firebase login:ci command to get your token).

serviceCredentialsFile

Required Service Credentials File - The path or HTTP URL to your service account private key JSON file. Required only if you use service account authentication.

file

Required Artifact to upload (.apk or .ipa)

groups

Distribution groups

releaseNotes

Release notes visible on release page. If not specified, plugin will add last commit's

  • hash
  • author
  • message

releaseNotesFile

Specify the release note path to a plain text file.

debug

Flag that can be included to print verbose log output. Default value is false

Sample usage

name: Build & upload to Firebase App Distribution 

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/[email protected]
    - name: set up JDK 1.8
      uses: actions/[email protected]
      with:
        java-version: 1.8
    - name: build release 
      run: ./gradlew assembleRelease
    - name: upload artifact to Firebase App Distribution
      uses: wzieba/[email protected]
      with:
        appId: ${{secrets.FIREBASE_APP_ID}}
        token: ${{secrets.FIREBASE_TOKEN}}
        groups: testers
        file: app/build/outputs/apk/release/app-release-unsigned.apk
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].