Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
autifyhq

GitHub Action

Upload build to Autify for Mobile

v2.0.0

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/[email protected]

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@v1
  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@v1
  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`. If set, this action will not install autify-cli."
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.