Skip to content

joshtynjala/setup-adobe-air-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 }}