Skip to content
play

GitHub Action

Setup Adobe AIR SDK

v2.2.0 Latest version

Setup Adobe AIR SDK

play

Setup Adobe AIR SDK

Action to setup Adobe AIR SDK

Installation

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

              

- name: Setup Adobe AIR SDK

uses: joshtynjala/setup-adobe-air-action@v2.2.0

Learn more about this action in joshtynjala/setup-adobe-air-action

Choose a version

Github Action to setup the Adobe AIR SDK

This action downloads the Adobe AIR SDK by HARMAN, adds the SDK's bin folder to the PATH, and sets the AIR_HOME environment variable.

Note: Purchasing a commercial license is required to unlock certain new, restricted features of the Adobe AIR SDK by HARMAN. However, "compiling SWFs and using other utilities such as the ATF tools remain a free activity."

Inputs

air-version

(Required) The version of the Adobe AIR SDK to set up. An exact version, such as 50.0.1.1, is recommended. However, a less specific version, like 50.0 or 50, is allowed.

accept-license

(Required) Set to true if you accept the Adobe AIR SDK License Agreement. The action will fail if the agreement is not accepted.

license-base64

(Optional) Use with an encrypted secret to optionally provide a valid adt.lic file, encoded as a Base64 string, to unlock new, restricted features.

Warning! Never include the raw Base64-encoded string value directly in your Github Actions .yml file. You must use an encrypted secret to prevent your license file from being leaked publicly.

Example usage

Use the AIR SDK by HARMAN for free activities:

uses: joshtynjala/setup-adobe-air-action@v2
with:
  air-version: "50.0.1.1"
  accept-license: true

Specify an encypted secret containing a Base64-encoded license file to unlock new, restricted features:

uses: joshtynjala/setup-adobe-air-action@v2
with:
  air-version: "50.0.1.1"
  accept-license: true
  license-base64: ${{ secrets.AIR_SDK_LICENSE_FILE }}