Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dbankier/ti-testflight-hook
- Owner: dbankier
- Created: 2014-02-03T23:36:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-12T23:52:20.000Z (almost 11 years ago)
- Last Synced: 2024-04-25T13:21:37.912Z (8 months ago)
- Language: JavaScript
- Size: 226 KB
- Stars: 20
- Watchers: 6
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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