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

GitHub Action: Fastlane

Actions Status

This action executes the lane that is passed.

ℹ️ If you are using a version < 1.4.0: Update to a newer version.

There is a file permission issue for versions lower than 1.4.0. Please update to the newest version.

Inputs

lane

Required The lane that should be executed.

options

Optional The options that should be passed as arguments to the lane. The options should be serialized as a JSON object.

subdirectory

Optional The relative path from the project root to the subdirectory where the fastlane folder is located.

bundle-install-path

Optional The directory where Ruby gems should be installed to and cached. If a relative path is specified, it's applied relative to the location of the Gemfiled, which is either the project root or the directory from the subdirectory input option.

skip-tracking

Optional The action tracks usage using Firebase by default (see Tracking of usage statistics). You can disable tracking by setting this input option to 'true'.

Example usage

Basic usage for executing a lane in the root directory without arguments.

uses: maierj/[email protected]
with:
  lane: 'beta'


Usage for executing a lane in the root directory with arguments. For a lane called beta to be called like

fastlane beta option1:value1 option2:value2

the workflow step should look like

uses: maierj/[email protected]
with:
  lane: 'beta'
  options: '{ "option1": "value1", "option2": "value2" }'


Usage for executing a lane in a context where the fastlane folder is in a subdirectory called ios.

uses: maierj/[email protected]
with:
  lane: 'beta'
  subdirectory: 'ios'


Speed up execution time of your workflow by specifying a custom directory where Ruby gems are installed to and shared between multiple steps of the same workflow.

uses maierj/[email protected]
with:
  lane: 'beta'
  subdirectory: 'ios'
  bundle-install-path: 'vendor/bundle'

Support & Limitations

The action supports macOS and ubuntu as virtual environments.

Tracking of usage statistics

Usage of this action is tracked using Firebase. The information that is tracked is:

  • If optional input options is used (not the value of the parameter)
  • If optional input subdirectory is used (not the value of the parameter)
  • If optional input bundle-install-path is used (not the value of the parameter)
  • Operating System of the runner that executes this action (using environment variable RUNNER_OS)
  • Name of the repository, that uses the action (using environment variable GITHUB_REPOSITORY)

Tracking can be disabled by using the input option skip-tracking.

Usage statistics results

These charts are generated automatically every night using a GitHub action workflow. The earliest data points were created on 27.12.2019.

Cumulative number of unique repositories that use the action

Cumulative number of unique repositories that use the action

Non-cumulative number of action runs

Non-cumulative number of action runs