/github-action-tfxinstaller

A GitHub action to install tfx-cli during a workflow.

Primary LanguageTypeScriptMIT LicenseMIT

build-test

TfxInstaller for GitHub Actions

A simple port of the TfxInstaller task for Azure DevOps.

Usage

See action.yml

Basic:

steps:
  - uses: actions/checkout@v2
  - uses: actions/setup-node@v1
  - uses: actions/TfxInstaller@v1
    with:
      version: 0.8.x

The version input allow to specify which tfx-cli version you want to use. Example: v0.8x, >=v0.5.x.

Check latest version:

steps:
  - uses: actions/checkout@v2
  - uses: actions/setup-node@v1
  - uses: actions/TfxInstaller@v1
    with:
      version: 0.8.x
      checkLatest: true

check-latest flag automatically download the latest version of tfx-cli.

License

The scripts and documentation in this project are released under the MIT License