Skip to content
terminal

GitHub Action

App Center CLI Action

v1 Latest version

App Center CLI Action

terminal

App Center CLI Action

Action responsible to enable the user to run any App Center command

Installation

Copy and paste the following snippet into your .yml file.

              

- name: App Center CLI Action

uses: vhsantos26/app-center-cli-action@v1

Learn more about this action in vhsantos26/app-center-cli-action

Choose a version

App Center CLI Action

Enable the user to run any App Center CLI command.

🚀 Usage

A workflow example to run the App Center CLI command doing a Code Push deployment:

name: App Center CLI Example

on: pull_request

jobs:
  build: 
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - run: yarn install 

      - run: yarn run unit-tests

  app_center_deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - uses: vhsantos26/app-center-cli-action@v1
        with:
          user_token: ${{ secrets.APP_CENTER_TOKEN }}
          command: appcenter codepush release-react -a Example/app-ios -d Staging

⚙️ Inputs

Name Description Default Required
user_token The user App Center token True
command The App Center command True

💭 Support

If you find our work useful, but for some reason there is something missing, please raise a pull request to us review it!