Skip to content
autifyhq

GitHub Action

Upload build to Autify for Mobile

v2.4.0 Latest version

Upload build to Autify for Mobile

autifyhq

Upload build to Autify for Mobile

Upload a build file to Autify for Mobile

Installation

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

              

- name: Upload build to Autify for Mobile

uses: autifyhq/actions-mobile-build-upload@v2.4.0

Learn more about this action in autifyhq/actions-mobile-build-upload

Choose a version

actions-mobile-build-upload status

Upload build to Autify for Mobile

Upload a build file to Autify for Mobile.

See our official documentation to get started: https://help.autify.com/mobile/docs/github-actions-integration

Usage

Upload iOS build file to Autify for Mobile

- uses: autifyhq/actions-mobile-build-upload@v2
  with:
    access-token: ${{ secrets.AUTIFY_MOBILE_ACCESS_TOKEN }}
    workspace-id: AAA
    build-path: /path/to/your-app.app

Upload Android build file to Autify for Mobile

- uses: autifyhq/actions-mobile-build-upload@v2
  with:
    access-token: ${{ secrets.AUTIFY_MOBILE_ACCESS_TOKEN }}
    workspace-id: AAA
    build-path: /path/to/your-app.apk

Options

access-token:
  required: true
  description: "Access token of Autify for Mobile."
workspace-id:
  required: true
  description: "Workspace ID to upload the build file."
build-path:
  required: true
  description: "File path to the iOS app (*.app) or Android app (*.apk)."
autify-path:
  required: false
  default: "autify"
  description: "A path to `autify` which will be used to invoke Autify CLI internally. Default is searching from PATH."
autify-cli-installer-url:
  required: false
  default: "https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/stable/install-cicd.bash"
  description: "Autify CLI installer URL"

Outputs

exit-code:
  description: "Exit code of autify-cli. 0 means succeeded."
log:
  description: "Log of stdout and stderr."
build-id:
  description: "Returned build id in the workspace."

Migrations

v2 from v1

Most of the case, v2 is compatible with v1 inputs. Please try to migrate to v2 because v1 is no more maintained.