All Projects → wzieba → AppCenter-Github-Action

wzieba / AppCenter-Github-Action

Licence: MIT License
This action uploads artifacts (.apk or .ipa) to Visual Studio App Center.

Programming Languages

shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to AppCenter-Github-Action

Appinfoscanner
一款适用于以HW行动/红队/渗透测试团队为场景的移动端(Android、iOS、WEB、H5、静态网站)信息收集扫描工具,可以帮助渗透测试工程师、攻击队成员、红队成员快速收集到移动端或者静态WEB站点中关键的资产信息并提供基本的信息输出,如:Title、Domain、CDN、指纹信息、状态信息等。
Stars: ✭ 424 (+821.74%)
Mutual labels:  apk, ipa
App Info Parser
A javascript parser for parsing .ipa or .apk files. IPA/APK文件 js 解析器
Stars: ✭ 298 (+547.83%)
Mutual labels:  apk, ipa
TransporterPad
iOS/Android app deployment tool for macOS
Stars: ✭ 51 (+10.87%)
Mutual labels:  apk, ipa
Ios Ipa Server
Create a HTTPS Server to install iOS ipa
Stars: ✭ 718 (+1460.87%)
Mutual labels:  distribution, ipa
Appdeploy
🚀 AppDeploy is the fastest way to get info on your mobile app & deploy it OTA without specific server configuration
Stars: ✭ 166 (+260.87%)
Mutual labels:  apk, ipa
Firebase Distribution Github Action
This action uploads artifacts (.apk or .ipa) to Firebase App Distribution.
Stars: ✭ 118 (+156.52%)
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 (-30.43%)
Mutual labels:  apk, ipa
ota-server
OTA Server for both Android app and iOS app
Stars: ✭ 30 (-34.78%)
Mutual labels:  apk, ipa
Command Mobile Penetration Testing Cheatsheet
Mobile penetration testing android & iOS command cheatsheet
Stars: ✭ 221 (+380.43%)
Mutual labels:  apk, ipa
react-native-decompiler
Decompile React Native Android/IOS Bundle.
Stars: ✭ 78 (+69.57%)
Mutual labels:  apk, ipa
reactnative-android-production
Step by step guid for compiling and installing React Native Android app [ bundled release version ] to your test device.
Stars: ✭ 51 (+10.87%)
Mutual labels:  apk
coindis
Bitcoin faucet supporting service without time limit.
Stars: ✭ 23 (-50%)
Mutual labels:  distribution
begin-with-init.vim
Minimal neovim distribution as init.vim
Stars: ✭ 32 (-30.43%)
Mutual labels:  distribution
applivery-ios-sdk
Applivery iOS SDK
Stars: ✭ 28 (-39.13%)
Mutual labels:  distribution
ti recover
Appcelerator Titanium APK source code recovery tool
Stars: ✭ 17 (-63.04%)
Mutual labels:  apk
Java Note
后端研发——笔记
Stars: ✭ 54 (+17.39%)
Mutual labels:  distribution
ToDo
Android application to quickly add tasks and reminders.
Stars: ✭ 13 (-71.74%)
Mutual labels:  apk
benfordslaw
benfordslaw is about the frequency distribution of leading digits.
Stars: ✭ 29 (-36.96%)
Mutual labels:  distribution
givemelyrics
See the lyrics of the song that is playing, from any application.
Stars: ✭ 52 (+13.04%)
Mutual labels:  appcenter
packages
Cloud Posse DevOps distribution of linux packages for native apps, binaries, alpine packages, debian packages, and redhat packages.
Stars: ✭ 107 (+132.61%)
Mutual labels:  apk

App Center Github Action

Sample workflow for App Center action

This action uploads artifacts (.apk or .ipa) to Visual Studio App Center.

Inputs

appName

Required username followed by App name e.g. wzieba/Sample-App

token

Required Upload token - you can get one from appcenter.ms/settings

group

Required Distribution group (or multiple groups split by ; delimiter)

file

Required Artifact to upload (.apk or .ipa)

buildVersion

Build version parameter required for .zip, .msi, .pkg and .dmg files

buildNumber

Build number parameter required for macOS .pkg and .dmg files

releaseNotes

Release notes visible on release page

gitReleaseNotes

Generate release notes based on the latest git commit

notifyTesters

If set to true, an email notification is sent to the distribution group

debug

If set to true, shows useful debug information from the action execution.

Requirements

This action is Docker-based. It means it can only execute on runners with a Linux operating system. See Github Actions documentation for details.

Sample usage

name: Build, code quality, tests

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: set up JDK 1.8
      uses: actions/setup-java@v1
      with:
        java-version: 1.8
    - name: build release
      run: ./gradlew assembleRelease
    - name: upload artefact to App Center
      uses: wzieba/AppCenter-Github-Action@v1
      with:
        appName: wzieba/Sample-App
        token: ${{secrets.APP_CENTER_TOKEN}}
        group: Testers
        file: app/build/outputs/apk/release/app-release-unsigned.apk
        notifyTesters: true
        debug: false
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].