Skip to content

GitHub Action for AppCenter Distribute Mobile

Actions
Wraps the appcenter CLI to enable common commands
0.2
Latest
Star (3)

GitHub Actions for Firebase

This Action for appcenter distribute enables arbitrary actions with the appcenter command-line client.

Inputs

  • args - Required. This is the arguments you want to use for the appcenter cli

Environment variables

  • APPCENTER_ACCESS_TOKEN - Required. The token to use for authentication. This token can be aquired through the appcenter dashboard.

Example

To authenticate with AppCenter, and deploy to AppCenter:

name: Build and Deploy
on:
  push:
    branches:
      - master

jobs:
  deploy:
    name: Deploy
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repo
        uses: actions/checkout@master
      - name: Install Dependencies
        run: npm install
      - name: Distribute to AppCenter
        uses: familiohq/appcenter-distribute-action@master
        with:
          args: stores publish  --file /path/to/file.aab --store Production --app yourName/sample-app --release-notes "Some note."
        env:
          APPCENTER_ACCESS_TOKEN: ${{ secrets.APPCENTER_ACCESS_TOKEN }}

License

The Dockerfile and associated scripts and documentation in this project are released under the MIT License.

Credits

Thanks to Jeremy Shore for the firebase-action repo.

GitHub Action for AppCenter Distribute Mobile is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Wraps the appcenter CLI to enable common commands
0.2
Latest

GitHub Action for AppCenter Distribute Mobile is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.