Skip to content
smartphone

GitHub Action

Install Titanium SDK

1.0.0 Latest version

Install Titanium SDK

smartphone

Install Titanium SDK

Install Titanium SDK

Installation

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

              

- name: Install Titanium SDK

uses: m1ga/[email protected]

Learn more about this action in m1ga/titanium-install

Choose a version

install-titanium

This action installs Titanium SDK so your workflow can run Titanium commands like ti --version.

Inputs

version

By default, the 11.1.1.GA will be used. But you can change it to a custom version too.

Example

name: Titanium Workflow
on: push
jobs:
  test:
    name: Run Tests
    runs-on: macos-latest
    steps:
      - uses: actions/checkout@v2
      - name: Install Titanium SDK
        uses:  m1ga/titanium-install@v1
        with:
          version: 11.1.1.GA
      - name: Output version
        run: ti --version