Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dbankier/ti-testflight-hook

ti cli hook for deploying testflight builds
https://github.com/dbankier/ti-testflight-hook

Last synced: about 2 months ago
JSON representation

ti cli hook for deploying testflight builds

Awesome Lists containing this project

README

        

# ti-testflight-hook

A titanium cli hook for deploying TestFlight builds.

## Installation

~~~
$ npm install -g ti-testflight-hook
~~~

If you install with `sudo` and get the error `Unable to write config file...` use the following command:

```
$ sudo npm install -g ti-testflight-hook --unsafe-perm
```

Or if you are concerned about using the `--unsafe-perm` flag, use the following command after install
to install the hook instead:

```
$ ti-testflight-hook
```

## Usage

Then you can added the following, e.g. to your tiapp.xml file.

These must be included:

~~~
ENTER_API_TOKEN_HERE
ENTER_TEAM_TOKEN_HERE
~~~

These are optional:

~~~
true
Internal, QA
true
~~~

**You will be prompted for the release notes.**

Then use the `--testflight` flag with the titanium cli to upload to TestFlight. For example:

~~~
$ ti build -p ios -F ipad -T dist-adhoc --testflight
~~~

### Licence MIT