https://github.com/cysp/hockeyapp-upload-buildkite-plugin
A Buildkite plugin to upload iOS app builds to HockeyApp
https://github.com/cysp/hockeyapp-upload-buildkite-plugin
buildkite-plugin
Last synced: 7 months ago
JSON representation
A Buildkite plugin to upload iOS app builds to HockeyApp
- Host: GitHub
- URL: https://github.com/cysp/hockeyapp-upload-buildkite-plugin
- Owner: cysp
- License: mpl-2.0
- Created: 2016-09-28T07:29:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T01:29:41.000Z (over 6 years ago)
- Last Synced: 2025-01-30T06:24:35.119Z (8 months ago)
- Topics: buildkite-plugin
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hockeyapp-upload-buildkite-plugin
A [Buildkite](https://buildkite.com/) plugin to upload iOS app builds to [HockeyApp](https://hockeyapp.net/).
## Example
```yml
steps:
- name: ":package:"
command: .ci-scripts/build-and-archive.sh
env:
HOCKEYAPP_APP_ID: 123456789abcdef
plugins:
- hockeyapp-upload:
path-ipa: .ci-artifacts/Xyzzy.ipa
path-dsym-zip: .ci-artifacts/Xyzzy.app.dSYM.zip
notify: true
```## Configuring
### `HOCKEYAPP_API_TOKEN`
## Options
### `api-token`
Specifies the HockeyApp API token
### `api-token-from`
Specifies the environment variable containing the HockeyApp API token
Default: `HOCKEYAPP_API_TOKEN`
### `app-id`
Specifies the HockeyApp Application ID
### `app-id-from`
Specifies the environment variable containing the HockeyApp Application ID
Default: `HOCKEYAPP_APP_ID`
### `path-ipa`
Specifies the path to the .ipa to upload
### `path-dsym-zip` (optional)
Specifies the path to a .dSYM.zip to upload
### `notify`
Whether or not to send notifications regarding the uploaded build
## License
MPL 2.0 (see [LICENSE](LICENSE))