├── .gitignore ├── steps ├── fastlane │ ├── assets │ │ └── icon.png │ ├── 2.1.3 │ │ └── step.yml │ ├── 2.0.0 │ │ └── step.yml │ ├── 2.1.0 │ │ └── step.yml │ ├── 2.1.1 │ │ └── step.yml │ └── 2.1.2 │ │ └── step.yml ├── resign-ipa │ ├── step-info.yml │ ├── assets │ │ └── icon.svg │ └── 1.0.0 │ │ └── step.yml ├── bitrise-ios-deploy │ └── step-info.yml ├── codecov-android │ ├── step-info.yml │ └── 1.0.0 │ │ └── step.yml ├── bitrise-artifact-deploy │ ├── step-info.yml │ └── assets │ │ └── icon.svg ├── git-clone-extended │ ├── step-info.yml │ └── assets │ │ └── icon.svg ├── cocoapods-and-repository-validator │ └── step-info.yml ├── select-xcode-version │ └── step-info.yml ├── xamarin-builder │ ├── step-info.yml │ └── assets │ │ └── icon.svg ├── installrapp-deploy │ └── assets │ │ └── icon.svg ├── git-tag │ ├── assets │ │ └── icon.svg │ ├── 1.1.0 │ │ └── step.yml │ └── 1.0.0 │ │ └── step.yml ├── random-quote │ ├── assets │ │ └── icon.svg │ ├── 3.0.2 │ │ └── step.yml │ └── 3.0.0 │ │ └── step.yml ├── recreate-user-schemes │ ├── assets │ │ └── icon.svg │ ├── 0.9.0 │ │ └── step.yml │ ├── 0.9.1 │ │ └── step.yml │ ├── 0.9.2 │ │ └── step.yml │ ├── 0.9.4 │ │ └── step.yml │ ├── 0.9.5 │ │ └── step.yml │ ├── 1.0.0 │ │ └── step.yml │ └── 1.0.1 │ │ └── step.yml ├── xamarin-insights │ ├── assets │ │ └── icon.svg │ ├── 0.9.0 │ │ └── step.yml │ └── 1.0.0 │ │ └── step.yml ├── cache-push │ └── assets │ │ └── icon.svg ├── cache-pull │ └── assets │ │ └── icon.svg ├── gradle-coveralls │ ├── assets │ │ └── icon.svg │ └── 1.0.0 │ │ └── step.yml ├── xamarin-archive │ └── assets │ │ └── icon.svg ├── ensure-clean-git │ ├── 0.9.0 │ │ └── step.yml │ └── 0.9.1 │ │ └── step.yml ├── github-status │ └── assets │ │ └── icon.svg ├── nuget-restore │ ├── 0.9.1 │ │ └── step.yml │ ├── 0.9.0 │ │ └── step.yml │ ├── 0.9.2 │ │ └── step.yml │ ├── 0.9.3 │ │ └── step.yml │ ├── 1.0.0 │ │ └── step.yml │ ├── 1.0.1 │ │ └── step.yml │ ├── 1.0.2 │ │ └── step.yml │ ├── 1.0.3 │ │ └── step.yml │ └── 1.0.4 │ │ └── step.yml ├── heroku-deploy │ └── assets │ │ └── icon.svg ├── gradle-runner │ ├── assets │ │ └── icon.svg │ ├── 0.9.1 │ │ └── step.yml │ └── 0.9.0 │ │ └── step.yml ├── gradle-unit-test │ └── assets │ │ └── icon.svg ├── sms-text-message │ └── assets │ │ └── icon.svg ├── change-value │ └── assets │ │ └── icon.svg ├── android-manifest-info │ └── assets │ │ └── icon.svg ├── xcode-archive-mac │ └── assets │ │ └── icon.svg ├── react-native-bundle │ └── assets │ │ └── icon.svg ├── file-downloader │ ├── 0.9.1 │ │ └── step.yml │ ├── 0.9.0 │ │ └── step.yml │ └── assets │ │ └── icon.svg ├── set-xcode-plist-value │ ├── assets │ │ └── icon.svg │ └── 1.0.0 │ │ └── step.yml ├── version-pre-release-info │ └── assets │ │ └── icon.svg ├── lifx-notifier │ └── assets │ │ └── icon.svg ├── start-android-emulator │ ├── 0.9.1 │ │ └── step.yml │ ├── 0.9.0 │ │ └── step.yml │ ├── 0.9.7 │ │ └── step.yml │ ├── 0.9.2 │ │ └── step.yml │ ├── 0.9.4 │ │ └── step.yml │ ├── 0.9.5 │ │ └── step.yml │ ├── 0.9.3 │ │ └── step.yml │ ├── 1.0.0 │ │ └── step.yml │ └── 1.0.1 │ │ └── step.yml ├── timestamp │ ├── assets │ │ └── icon.svg │ └── 0.9.1 │ │ └── step.yml ├── npm │ ├── assets │ │ └── icon.svg │ ├── 0.1.0 │ │ └── step.yml │ ├── 0.1.1 │ │ └── step.yml │ └── 0.9.0 │ │ └── step.yml ├── cocoaseeds-install │ ├── 1.0.0 │ │ └── step.yml │ └── assets │ │ └── icon.svg ├── xamarin-components-restore │ └── 0.9.0 │ │ └── step.yml ├── git-clone │ └── assets │ │ └── icon.svg ├── fabric-crashlytics-beta-deploy │ └── assets │ │ └── icon.svg ├── set-xcode-build-number │ ├── assets │ │ └── icon.svg │ ├── 1.0.1 │ │ └── step.yml │ └── 1.0.0 │ │ └── step.yml ├── codecov │ ├── 1.0.0 │ │ └── step.yml │ ├── 1.0.1 │ │ └── step.yml │ ├── 1.1.4 │ │ └── step.yml │ ├── 1.1.3 │ │ └── step.yml │ ├── 1.1.2 │ │ └── step.yml │ ├── 1.1.0 │ │ └── step.yml │ └── 1.1.1 │ │ └── step.yml ├── fauxpasapp │ └── assets │ │ └── icon.svg ├── resource-archive │ ├── assets │ │ └── icon.svg │ └── 2.0.0 │ │ └── step.yml ├── calabash-android-uitest │ ├── 0.9.0 │ │ └── step.yml │ └── 0.9.1 │ │ └── step.yml ├── email-with-mailgun │ └── assets │ │ └── icon.svg ├── jasmine-runner │ └── 0.9.0 │ │ └── step.yml ├── ftp-upload │ └── assets │ │ └── icon.svg ├── remote-script-runner │ ├── 2.0.1 │ │ └── step.yml │ └── 2.0.0 │ │ └── step.yml ├── nunit-runner │ ├── assets │ │ └── icon.svg │ ├── 0.9.1 │ │ └── step.yml │ ├── 0.9.2 │ │ └── step.yml │ ├── 0.9.3 │ │ └── step.yml │ └── 0.9.0 │ │ └── step.yml ├── nvm │ └── 0.1.0 │ │ └── step.yml ├── curl-ping │ ├── assets │ │ └── icon.svg │ └── 2.0.0 │ │ └── step.yml ├── amazon-s3-uploader │ └── assets │ │ └── icon.svg ├── appetize-deploy │ └── assets │ │ └── icon.svg ├── sonarqube-scanner │ └── assets │ │ └── icon.svg ├── codified-security-bitrise │ ├── 1.0.0 │ │ └── step.yml │ └── 1.0.1 │ │ └── step.yml ├── export-xcarchive │ └── assets │ │ └── icon.svg ├── secure-delete-path │ └── assets │ │ └── icon.svg ├── slack │ └── assets │ │ └── icon.svg ├── yarn │ ├── 0.0.2 │ │ └── step.yml │ ├── 0.0.4 │ │ └── step.yml │ └── 0.0.3 │ │ └── step.yml ├── certificate-and-profile-installer │ └── assets │ │ └── icon.svg ├── activate-ssh-key │ └── assets │ │ └── icon.svg ├── aws-device-farm-runner │ └── assets │ │ └── icon.svg ├── cocoapods-install │ ├── 1.2.1 │ │ └── step.yml │ ├── 1.0.0 │ │ └── step.yml │ ├── 1.0.1 │ │ └── step.yml │ ├── 1.0.2 │ │ └── step.yml │ ├── 1.0.3 │ │ └── step.yml │ ├── 1.1.0 │ │ └── step.yml │ ├── 1.2.0 │ │ └── step.yml │ └── assets │ │ └── icon.svg ├── create-android-emulator │ ├── assets │ │ └── icon.svg │ ├── 0.9.1 │ │ └── step.yml │ └── 0.9.0 │ │ └── step.yml ├── set-android-manifest-versions │ └── assets │ │ └── icon.svg ├── karma-jasmine-runner │ ├── 0.9.0 │ │ └── step.yml │ └── 0.9.1 │ │ └── step.yml ├── push-notification-with-parse │ └── assets │ │ └── icon.svg ├── android-sdk-update │ └── assets │ │ └── icon.svg ├── install-dotnetcore │ └── 1.0.0 │ │ └── step.yml ├── web-translate-it │ ├── 1.0.2 │ │ └── step.yml │ └── 1.0.1 │ │ └── step.yml ├── xcode-project-info │ ├── 1.0.1 │ │ └── step.yml │ └── 1.0.2 │ │ └── step.yml ├── generate-text-file │ ├── 0.0.3 │ │ └── step.yml │ └── 0.0.2 │ │ └── step.yml ├── hipchat │ └── assets │ │ └── icon.svg ├── raygun │ ├── 1.0.1 │ │ └── step.yml │ └── 1.0.0 │ │ └── step.yml ├── gulp │ ├── 0.1.0 │ │ └── step.yml │ └── 0.1.1 │ │ └── step.yml ├── hipchat-v2 │ └── assets │ │ └── icon.svg ├── tslint │ └── 0.0.4 │ │ └── step.yml ├── bower │ ├── 0.1.2 │ │ └── step.yml │ └── 0.1.3 │ │ └── step.yml ├── giphy │ ├── assets │ │ └── icon.svg │ ├── 0.1.0 │ │ └── step.yml │ └── 0.1.1 │ │ └── step.yml ├── set-android-manifest-package-name │ └── 0.9.0 │ │ └── step.yml ├── amazon-s3-upload │ └── assets │ │ └── icon.svg └── ruby-script │ ├── 2.0.0 │ └── step.yml │ └── 2.0.1 │ └── step.yml ├── steplib.yml ├── PULL_REQUEST_TEMPLATE.md ├── LICENSE └── _scripts └── deploy └── deploy.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .bitrise.* 2 | .bitrise 3 | _tmp 4 | -------------------------------------------------------------------------------- /steps/fastlane/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-archive/bitrise-steplib/master/steps/fastlane/assets/icon.png -------------------------------------------------------------------------------- /steps/resign-ipa/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2017.10.01" 2 | deprecate_notes: | 3 | Please use export-xcarchive step instead. 4 | -------------------------------------------------------------------------------- /steps/bitrise-ios-deploy/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2016-06-01" 2 | deprecate_notes: | 3 | Use deploy-to-bitrise-io step instead of this. 4 | -------------------------------------------------------------------------------- /steps/codecov-android/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2017-09-21" 2 | deprecate_notes: | 3 | This step is deprecated, use codecov step instead. 4 | -------------------------------------------------------------------------------- /steps/bitrise-artifact-deploy/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2016-06-01" 2 | deprecate_notes: | 3 | Use deploy-to-bitrise-io step instead of this. 4 | -------------------------------------------------------------------------------- /steps/git-clone-extended/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2017-08-01" 2 | deprecate_notes: | 3 | This step is deprecated, use activate-ssh-key + git-clone steps instead. 4 | -------------------------------------------------------------------------------- /steps/cocoapods-and-repository-validator/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2017-08-01" 2 | deprecate_notes: | 3 | This step is deprecated, use repository-scanner step instead. 4 | -------------------------------------------------------------------------------- /steps/select-xcode-version/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2017-08-01" 2 | deprecate_notes: | 3 | This step is deprecated, there's no need to use this Step on the new [bitrise.io](https://www.bitrise.io) Stacks. 4 | -------------------------------------------------------------------------------- /steps/xamarin-builder/step-info.yml: -------------------------------------------------------------------------------- 1 | removal_date: "2017-08-01" 2 | deprecate_notes: | 3 | This step is deprecated, use xamarin-archive step instead. More info at - http://blog.bitrise.io/2016/10/18/the-new-xamarin-archive-step.html 4 | -------------------------------------------------------------------------------- /steplib.yml: -------------------------------------------------------------------------------- 1 | --- 2 | format_version: 1.0.0 3 | steplib_source: https://github.com/bitrise-io/bitrise-steplib.git 4 | assets_download_base_uri: https://bitrise-steplib-collection.s3.amazonaws.com/steps 5 | download_locations: 6 | - type: zip 7 | src: https://bitrise-steplib-collection.s3.amazonaws.com/step-archives/ 8 | - type: git 9 | src: source/git 10 | -------------------------------------------------------------------------------- /steps/installrapp-deploy/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/git-tag/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/resign-ipa/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/random-quote/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### New Pull Request Checklist 2 | 3 | *Please mark the points which you did / accept.* 4 | 5 | - [ ] I read the [Step Development Guideline](https://github.com/bitrise-io/bitrise/blob/master/_docs/step-development-guideline.md) 6 | - [ ] I have a test for my Step, which can be run with `bitrise run test` (in the step's repository) 7 | - [ ] I did run `bitrise run audit-this-step` (in the step's repository - note, if you don't have this workflow in your `bitrise.yml`, [you can copy it from the step template](https://github.com/bitrise-steplib/step-template/blob/master/bitrise.yml).) 8 | - [ ] I read and accept the [Abandoned Step policy](https://github.com/bitrise-io/bitrise-steplib#abandoned-step-policy) 9 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/xamarin-insights/assets/icon.svg: -------------------------------------------------------------------------------- 1 | xamarin_insights -------------------------------------------------------------------------------- /steps/cache-push/assets/icon.svg: -------------------------------------------------------------------------------- 1 | cache -------------------------------------------------------------------------------- /steps/cache-pull/assets/icon.svg: -------------------------------------------------------------------------------- 1 | cache -------------------------------------------------------------------------------- /steps/gradle-coveralls/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/xamarin-archive/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 99 -------------------------------------------------------------------------------- /steps/ensure-clean-git/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Ensure clean git 2 | description: |- 3 | Fails if there's any uncommitted change in the git repository. 4 | 5 | Calls `git status` and fails if it reports any changed/uncommitted file. 6 | summary: |- 7 | Make sure your repo is clean as a whistle, no uncommitted changes, 8 | nothing to hide. 9 | website: https://github.com/bitrise-io/steps-ensure-clean-git 10 | source_code_url: https://github.com/bitrise-io/steps-ensure-clean-git 11 | support_url: https://github.com/bitrise-io/steps-ensure-clean-git/issues 12 | published_at: 2015-08-15T14:35:38.611929345+02:00 13 | source: 14 | git: https://github.com/bitrise-io/steps-ensure-clean-git.git 15 | commit: a3fa0a5aeebc22046bf4d1ce4080e86a7451de82 16 | host_os_tags: 17 | - osx-10.10 18 | type_tags: 19 | - git 20 | is_requires_admin_user: false 21 | is_always_run: false 22 | is_skippable: false 23 | -------------------------------------------------------------------------------- /steps/github-status/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 103 -------------------------------------------------------------------------------- /steps/nuget-restore/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2016-03-08T16:41:34.619849157+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: a93ce1a0fc2515ee00ca6235de97085c41e92ffa 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | is_requires_admin_user: true 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin solution 23 | is_expand: true 24 | is_required: true 25 | title: Path to Xamarin solution 26 | xamarin_solution: $BITRISE_PROJECT_PATH 27 | -------------------------------------------------------------------------------- /steps/nuget-restore/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Step nuget restore 2 | summary: Step nuget restore 3 | description: Step nuget restore 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2015-12-17T13:33:46.535004354+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: 69960520ad6c2ef70af7d3f795ac7b9b8c85b720 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | is_requires_admin_user: true 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin solution 23 | is_expand: true 24 | is_required: true 25 | title: Path to Xamarin solution 26 | xamarin_solution: $BITRISE_PROJECT_PATH 27 | -------------------------------------------------------------------------------- /steps/heroku-deploy/assets/icon.svg: -------------------------------------------------------------------------------- 1 | heroku -------------------------------------------------------------------------------- /steps/gradle-runner/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /steps/gradle-unit-test/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /steps/sms-text-message/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /steps/change-value/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/android-manifest-info/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 109 -------------------------------------------------------------------------------- /steps/xcode-archive-mac/assets/icon.svg: -------------------------------------------------------------------------------- 1 | mac -------------------------------------------------------------------------------- /steps/react-native-bundle/assets/icon.svg: -------------------------------------------------------------------------------- 1 | react -------------------------------------------------------------------------------- /steps/file-downloader/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: File Downloader 2 | summary: Downloads file 3 | description: Downloads file 4 | website: https://github.com/bitrise-steplib/steps-file-downloader 5 | source_code_url: https://github.com/bitrise-steplib/steps-file-downloader 6 | support_url: https://github.com/bitrise-steplib/steps-file-downloader/issues 7 | published_at: 2016-06-29T10:28:36.915091999+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-file-downloader.git 10 | commit: 8877374cc8d17a599e359ff7bddf465da14e9ba8 11 | type_tags: 12 | - utility 13 | is_requires_admin_user: false 14 | is_always_run: false 15 | is_skippable: false 16 | run_if: "" 17 | inputs: 18 | - opts: 19 | description: | 20 | Download source url 21 | is_required: true 22 | title: Download source url 23 | source: null 24 | - destination: null 25 | opts: 26 | description: | 27 | Download destination path 28 | is_required: true 29 | title: Download destination path 30 | -------------------------------------------------------------------------------- /steps/set-xcode-plist-value/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 111 -------------------------------------------------------------------------------- /steps/version-pre-release-info/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/file-downloader/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: File Downloader 2 | summary: Downloands file 3 | description: Downloands file 4 | website: https://github.com/bitrise-steplib/steps-file-downloader 5 | source_code_url: https://github.com/bitrise-steplib/steps-file-downloader 6 | support_url: https://github.com/bitrise-steplib/steps-file-downloader/issues 7 | published_at: 2016-06-21T16:12:51.635139329+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-file-downloader.git 10 | commit: 2a79576302bc56ba99adde840a0c2f5590b67c7c 11 | project_type_tags: 12 | - script 13 | is_requires_admin_user: false 14 | is_always_run: false 15 | is_skippable: false 16 | run_if: "" 17 | inputs: 18 | - opts: 19 | description: | 20 | Download source url 21 | is_required: true 22 | title: Download source url 23 | source: null 24 | - destination: null 25 | opts: 26 | description: | 27 | Download destination path 28 | is_required: true 29 | title: Download destination path 30 | -------------------------------------------------------------------------------- /steps/lifx-notifier/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/start-android-emulator/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully 3 | description: Start Android emulator and wait till it's booted fully 4 | website: https://github.com/bitrise-io/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-io/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-io/steps-start-android-emulator/issues 7 | published_at: 2015-10-29T19:14:05.497393131Z 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: 786eb7074098c0c042cb65439f05bf9e66a9fb82 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_expand: true 26 | is_required: true 27 | title: Emulator to boot 28 | -------------------------------------------------------------------------------- /steps/start-android-emulator/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully 3 | description: Start Android emulator and wait till it's booted fully 4 | website: https://github.com/bitrise-io/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-io/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-io/steps-start-android-emulator/issues 7 | published_at: 2015-10-29T17:25:42.008578447Z 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: cd02fa5143cb3fe90f2b91a98d88b30f6c98415a 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_expand: true 26 | is_required: false 27 | title: Emulator to boot 28 | -------------------------------------------------------------------------------- /steps/timestamp/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /steps/npm/assets/icon.svg: -------------------------------------------------------------------------------- 1 | npm -------------------------------------------------------------------------------- /steps/cocoaseeds-install/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaSeeds install 2 | summary: |- 3 | You don't need to keep the installed seeds in your repo, simply add this step 4 | and Bitrise will do the seed install for you on the VM! 5 | description: Run CocoaSeeds install (`$ seed install`) in your App's directory. 6 | website: https://github.com/Frugghi/cocoaseeds-bitrise 7 | source_code_url: https://github.com/Frugghi/cocoaseeds-bitrise 8 | support_url: https://github.com/Frugghi/cocoaseeds-bitrise/issues 9 | published_at: 2016-05-09T04:06:27.666182532+02:00 10 | source: 11 | git: https://github.com/Frugghi/cocoaseeds-bitrise.git 12 | commit: 110014bb17d8d761647b2146619923f524fe4250 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - dependency 19 | is_requires_admin_user: false 20 | is_always_run: false 21 | is_skippable: false 22 | inputs: 23 | - opts: 24 | is_expand: true 25 | is_required: true 26 | title: Source Code Directory path. 27 | source_root_path: $BITRISE_SOURCE_DIR 28 | -------------------------------------------------------------------------------- /steps/timestamp/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Generate timestamps 2 | description: |- 3 | Generates current timestamp 4 | summary: |- 5 | Need some time? This step helps by giving you the current time 6 | in two formats! ISO_DATETIME and even UNIX_TIMESTAMP! What more could a mere 7 | mortal ask for? 8 | website: https://github.com/bitrise-io/steps-timestamp 9 | source_code_url: https://github.com/bitrise-io/steps-timestamp 10 | support_url: https://github.com/bitrise-io/steps-timestamp/issues 11 | published_at: 2015-08-20T14:35:38.611929345+02:00 12 | source: 13 | git: https://github.com/bitrise-io/steps-timestamp.git 14 | commit: 97f1ac0d48e1450cb71f0dd6dc28f76e88c49c35 15 | host_os_tags: 16 | - osx-10.10 17 | type_tags: 18 | - utility 19 | dependencies: 20 | - manager: brew 21 | name: go 22 | is_requires_admin_user: false 23 | is_always_run: false 24 | is_skippable: false 25 | outputs: 26 | - UNIX_TIMESTAMP: null 27 | opts: 28 | title: unix style 29 | - ISO_DATETIME: null 30 | opts: 31 | title: iso 8601 (RFC3339Nano) 32 | -------------------------------------------------------------------------------- /steps/codecov-android/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: Reduce technical debt with visualized test performance, faster code reviews 4 | and workflow enhancements. You can now upload your code coverage files to Codecov 5 | every time you kick off a build! 6 | website: https://github.com/guitcastro/codecov-android 7 | source_code_url: https://github.com/guitcastro/codecov-android 8 | support_url: https://github.com/guitcastro/codecov-android/issues 9 | published_at: 2016-02-18T15:32:16.657292457-02:00 10 | source: 11 | git: https://github.com/guitcastro/codecov-android.git 12 | commit: 75dd3fc5d9523a9843d5d677c4aca737ec0eb81b 13 | host_os_tags: 14 | - ubuntu 15 | type_tags: 16 | - test 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: true 20 | inputs: 21 | - CODECOV_TOKEN: null 22 | opts: 23 | description: | 24 | Codecov.io repository upload token 25 | is_expand: true 26 | is_required: true 27 | title: Codecov.io token 28 | -------------------------------------------------------------------------------- /steps/file-downloader/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/xamarin-components-restore/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Step Xamarin Components Restore 2 | summary: Step Xamarin Components Restore 3 | description: Step Xamarin Components Restore 4 | website: https://github.com/bitrise-steplib/steps-xamarin-components-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-xamarin-components-restore.git 6 | support_url: https://github.com/bitrise-steplib/steps-xamarin-components-restore/issues 7 | published_at: 2015-12-17T13:21:31.411856314+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-xamarin-components-restore.git 10 | commit: b9bad61dcab4dfd9c0d9242ae724a37900c9269c 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | type_tags: 16 | - dependency 17 | is_requires_admin_user: true 18 | is_always_run: false 19 | is_skippable: false 20 | run_if: "" 21 | inputs: 22 | - opts: 23 | description: | 24 | Path to Xamarin solution 25 | is_expand: true 26 | is_required: true 27 | title: Path to Xamarin solution 28 | xamarin_solution: $BITRISE_PROJECT_PATH 29 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Recreate User Schemes 2 | summary: Recreate User Schemes 3 | description: "This step recreates default user schemes.\n\nIf no shared schemes exist 4 | in the project/workspace, step will recreate default user schemes, \njust like Xcode 5 | does. " 6 | website: https://github.com/bitrise-steplib/steps-recreate-user-schemes 7 | source_code_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes 8 | support_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes/issues 9 | published_at: 2016-07-27T17:38:19.025276826+02:00 10 | source: 11 | git: https://github.com/bitrise-steplib/steps-recreate-user-schemes.git 12 | commit: 6ee2c5cc0c5978ddfbad10ea0edfb2fa1774994a 13 | project_type_tags: 14 | - ios 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | A `.xcodeproj/.xcworkspace` path. 23 | is_required: true 24 | summary: "" 25 | title: Project or Workspace path 26 | project_path: null 27 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Recreate User Schemes 2 | summary: Recreate User Schemes 3 | description: "This step recreates default user schemes.\n\nIf no shared schemes exist 4 | in the project/workspace, step will recreate default user schemes, \njust like Xcode 5 | does. " 6 | website: https://github.com/bitrise-steplib/steps-recreate-user-schemes 7 | source_code_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes 8 | support_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes/issues 9 | published_at: 2016-07-29T16:40:40.395368804+02:00 10 | source: 11 | git: https://github.com/bitrise-steplib/steps-recreate-user-schemes.git 12 | commit: 02717b3f6e1795b4724ef4e4c2a21b13b2e6a0f7 13 | project_type_tags: 14 | - ios 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | A `.xcodeproj/.xcworkspace` path. 23 | is_required: true 24 | summary: "" 25 | title: Project or Workspace path 26 | project_path: null 27 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/0.9.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Recreate User Schemes 2 | summary: Recreate User Schemes 3 | description: "This step recreates default user schemes.\n\nIf no shared schemes exist 4 | in the project/workspace, step will recreate default user schemes, \njust like Xcode 5 | does. " 6 | website: https://github.com/bitrise-steplib/steps-recreate-user-schemes 7 | source_code_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes 8 | support_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes/issues 9 | published_at: 2016-09-06T17:27:28.112223278+02:00 10 | source: 11 | git: https://github.com/bitrise-steplib/steps-recreate-user-schemes.git 12 | commit: ca5ce8b3e38fe7d9a07bf829e033557cc64b950d 13 | project_type_tags: 14 | - ios 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | A `.xcodeproj/.xcworkspace` path. 23 | is_required: true 24 | summary: "" 25 | title: Project or Workspace path 26 | project_path: null 27 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/0.9.4/step.yml: -------------------------------------------------------------------------------- 1 | title: Recreate User Schemes 2 | summary: Recreate User Schemes 3 | description: "This step recreates default user schemes.\n\nIf no shared schemes exist 4 | in the project/workspace, step will recreate default user schemes, \njust like Xcode 5 | does. " 6 | website: https://github.com/bitrise-steplib/steps-recreate-user-schemes 7 | source_code_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes 8 | support_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes/issues 9 | published_at: 2016-09-08T14:59:38.434401509+02:00 10 | source: 11 | git: https://github.com/bitrise-steplib/steps-recreate-user-schemes.git 12 | commit: 6a13d691f3553708aa0eb6d4b0d7cef7a2d14611 13 | project_type_tags: 14 | - ios 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | A `.xcodeproj/.xcworkspace` path. 23 | is_required: true 24 | summary: "" 25 | title: Project or Workspace path 26 | project_path: null 27 | -------------------------------------------------------------------------------- /steps/git-clone/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /steps/fabric-crashlytics-beta-deploy/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 9 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /steps/set-xcode-build-number/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /steps/codecov/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: Reduce technical debt with visualized test performance, faster code reviews 4 | and workflow enhancements. You can now upload your code coverage files to Codecov 5 | every time you kick off a build! 6 | website: https://github.com/bitrise-io/steps-codecov 7 | source_code_url: https://github.com/bitrise-io/steps-codecov 8 | support_url: https://github.com/bitrise-io/steps-codecov/issues 9 | published_at: 2015-10-28T16:54:02.524489434Z 10 | source: 11 | git: https://github.com/bitrise-io/steps-codecov.git 12 | commit: be8d5b2e4a0a49f1db7d3c2ff758b3562eae7d41 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - build 19 | - xcode 20 | - code_coverage 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: true 24 | inputs: 25 | - CODECOV_TOKEN: null 26 | opts: 27 | description: | 28 | Codecov.io repository upload token 29 | is_expand: true 30 | is_required: true 31 | title: Codecov.io token 32 | -------------------------------------------------------------------------------- /steps/codecov/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: |- 4 | Reduce technical debt with visualized test performance, 5 | faster code reviews and workflow enhancements. 6 | You can now upload your code coverage files to Codecov every time you kick off a build! 7 | website: https://github.com/bitrise-io/steps-codecov 8 | source_code_url: https://github.com/bitrise-io/steps-codecov 9 | support_url: https://github.com/bitrise-io/steps-codecov/issues 10 | published_at: 2016-04-28T16:38:51.519615349+02:00 11 | source: 12 | git: https://github.com/bitrise-io/steps-codecov.git 13 | commit: 8d358bd1097328e459609053acd856200d3abf6e 14 | host_os_tags: 15 | - osx-10.10 16 | - ubuntu-14.04 17 | project_type_tags: 18 | - ios 19 | - android 20 | type_tags: 21 | - build 22 | - xcode 23 | - code_coverage 24 | is_requires_admin_user: false 25 | is_always_run: false 26 | is_skippable: true 27 | inputs: 28 | - CODECOV_TOKEN: null 29 | opts: 30 | description: | 31 | Codecov.io repository upload token 32 | is_required: true 33 | title: Codecov.io token 34 | -------------------------------------------------------------------------------- /steps/fauxpasapp/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 110 -------------------------------------------------------------------------------- /steps/gradle-runner/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Gradle Runner 2 | summary: Runs a gradle task 3 | description: Runs a gradle task 4 | website: https://github.com/bitrise-io/steps-gradle-runner 5 | source_code_url: https://github.com/bitrise-io/steps-gradle-runner 6 | support_url: https://github.com/bitrise-io/steps-gradle-runner/issues 7 | published_at: 2015-10-29T18:52:50.97101866Z 8 | source: 9 | git: https://github.com/bitrise-io/steps-gradle-runner.git 10 | commit: cc24394874678e54b9d4ecc17c6329cf63477412 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - gradle 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - opts: 22 | description: | 23 | Working directory of the step. 24 | You can leave it empty to don't change it. 25 | is_expand: true 26 | is_required: false 27 | title: Working directory 28 | workdir: $BITRISE_SOURCE_DIR 29 | - gradle_task: null 30 | opts: 31 | description: | 32 | Gradle task to run 33 | is_expand: true 34 | is_required: true 35 | title: Gradle task to run 36 | -------------------------------------------------------------------------------- /steps/npm/0.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Run npm command 2 | summary: Runs `npm` with the given command and args. 3 | description: Runs `npm` with the given command and args. 4 | website: https://github.com/bitrise-steplib/steps-npm 5 | source_code_url: https://github.com/bitrise-steplib/steps-npm 6 | support_url: https://github.com/bitrise-steplib/steps-npm/issues 7 | published_at: 2016-03-09T13:29:24.879012651+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-npm.git 10 | commit: 25d36053a5b9ae0db836eba47cfb12f0c0fa8a04 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - react-native 15 | type_tags: 16 | - npm 17 | deps: 18 | brew: 19 | - name: node 20 | inputs: 21 | - command: null 22 | opts: 23 | description: Specify the command to run with `npm`. For example `install`, or 24 | `test`. 25 | title: The `npm` command to run 26 | - args: null 27 | opts: 28 | description: |- 29 | Arguments are added to the `npm` command. You can specify multiple arguments, separated 30 | by a space character. For example `-dd -ll` 31 | title: Arguments for running `npm` commands 32 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/0.9.5/step.yml: -------------------------------------------------------------------------------- 1 | title: Recreate User Schemes 2 | summary: Recreate User Schemes 3 | description: "This step recreates default user schemes.\n\nIf no shared schemes exist 4 | in the project/workspace, step will recreate default user schemes, \njust like Xcode 5 | does. " 6 | website: https://github.com/bitrise-steplib/steps-recreate-user-schemes 7 | source_code_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes 8 | support_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes/issues 9 | published_at: 2016-12-19T17:20:02.207748267+01:00 10 | source: 11 | git: https://github.com/bitrise-steplib/steps-recreate-user-schemes.git 12 | commit: e7eec070db7dfaede5a1afa365bf1f10eb2a4cde 13 | project_type_tags: 14 | - ios 15 | - macos 16 | type_tags: 17 | - utility 18 | deps: {} 19 | is_requires_admin_user: false 20 | is_always_run: false 21 | is_skippable: false 22 | run_if: "" 23 | inputs: 24 | - opts: 25 | description: | 26 | A `.xcodeproj/.xcworkspace` path. 27 | is_required: true 28 | summary: "" 29 | title: Project or Workspace path 30 | project_path: null 31 | -------------------------------------------------------------------------------- /steps/resource-archive/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Bitrise 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /steps/xamarin-builder/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /steps/calabash-android-uitest/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Step Calabash android UITest 2 | summary: Step Calabash android UITest 3 | description: Step Calabash android UITest 4 | website: https://github.com/bitrise-steplib/steps-calabash-android-uitest 5 | source_code_url: https://github.com/bitrise-steplib/steps-calabash-android-uitest 6 | support_url: https://github.com/bitrise-steplib/steps-calabash-android-uitest/issues 7 | published_at: 2015-12-21T12:47:57.895124084+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-calabash-android-uitest.git 10 | commit: b8a99d76d2552a52619f725448dfd429a54aacf7 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - testing 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | run_if: "" 21 | inputs: 22 | - apk_path: null 23 | opts: 24 | description: | 25 | APK path 26 | is_expand: true 27 | is_required: true 28 | title: APK path 29 | outputs: 30 | - BITRISE_XAMARIN_TEST_RESULT: null 31 | opts: 32 | title: Result of the tests. 'succeeded' or 'failed'. 33 | value_options: 34 | - succeeded 35 | - failed 36 | -------------------------------------------------------------------------------- /steps/email-with-mailgun/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /steps/xamarin-insights/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Xamarin.Insights 2 | summary: Upload your dSym to Xamarin.Insights 3 | description: Upload your dSym to Xamarin.Insights 4 | website: https://github.com/bitrise-steplib/steps-xamarin-insights 5 | source_code_url: https://github.com/bitrise-steplib/steps-xamarin-insights 6 | support_url: https://github.com/bitrise-steplib/steps-xamarin-insights/issues 7 | published_at: 2016-02-08T12:55:06.75242244+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-xamarin-insights.git 10 | commit: eced0a55ac0cb86def5b5bfb63efc05a2bf97655 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | inputs: 19 | - opts: 20 | description: | 21 | API Key for Xamarin.Insights 22 | is_expand: true 23 | is_required: true 24 | title: API Key for Xamarin.Insights 25 | xamarin_insights_api_key: null 26 | - dsym_path: $BITRISE_DSYM_PATH 27 | opts: 28 | description: | 29 | Path to your zipped dSYM file 30 | is_expand: true 31 | is_required: true 32 | title: Path to your zipped dSYM file 33 | -------------------------------------------------------------------------------- /steps/calabash-android-uitest/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Calabash Android UI test 2 | summary: Calabash Android UI test step 3 | description: Calabash Android UI test step 4 | website: https://github.com/bitrise-steplib/steps-calabash-android-uitest 5 | source_code_url: https://github.com/bitrise-steplib/steps-calabash-android-uitest 6 | support_url: https://github.com/bitrise-steplib/steps-calabash-android-uitest/issues 7 | published_at: 2016-03-09T15:44:21.785795151+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-calabash-android-uitest.git 10 | commit: d1fd87aacdbeb76be7aaf6fc3a21305821ac6ab5 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - testing 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | run_if: "" 21 | inputs: 22 | - apk_path: $BITRISE_APK_PATH 23 | opts: 24 | description: | 25 | APK path 26 | is_expand: true 27 | is_required: true 28 | title: APK path 29 | outputs: 30 | - BITRISE_XAMARIN_TEST_RESULT: null 31 | opts: 32 | title: Result of the tests. 'succeeded' or 'failed'. 33 | value_options: 34 | - succeeded 35 | - failed 36 | -------------------------------------------------------------------------------- /steps/jasmine-runner/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Jasmine Test Runner 2 | summary: Runs Jasmine Tests 3 | description: Runs Jasmine Tests 4 | website: https://github.com/bitrise-community/steps-jasmine-runner 5 | source_code_url: https://github.com/bitrise-community/steps-jasmine-runner 6 | support_url: https://github.com/bitrise-community/steps-jasmine-runner/issues 7 | published_at: 2017-04-27T18:05:14.038292257+02:00 8 | source: 9 | git: https://github.com/bitrise-community/steps-jasmine-runner.git 10 | commit: 7a15c2cb20443dd0a844e8814315bf6e99347cda 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - cordova 15 | type_tags: 16 | - build 17 | toolkit: 18 | go: 19 | package_name: github.com/bitrise-community/steps-jasmine-runner 20 | deps: 21 | brew: 22 | - name: go 23 | inputs: 24 | - opts: 25 | description: Working directory. 26 | summary: "" 27 | title: Working directory 28 | workdir: $BITRISE_SOURCE_DIR 29 | - options: null 30 | opts: 31 | description: |- 32 | Use this input to specify custom options, to append to the end of the jasmine command. 33 | 34 | `jasmine [options]` 35 | title: Options to append to the jasmine command 36 | -------------------------------------------------------------------------------- /steps/cocoaseeds-install/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/ftp-upload/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 10 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /steps/remote-script-runner/2.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Remote Bash Script Runner 2 | summary: |- 3 | Found a great GitHub Gist that you'd like to use during your workflow? 4 | Just add the raw URL, Bitrise will download it and run it as a bash script! 5 | description: |- 6 | Downloads the content of the input url and runs it as a bash script. 7 | For example you can provide a GitHub Gist *raw* url. 8 | website: https://github.com/bitrise-io/steps-remote-script-runner 9 | source_code_url: https://github.com/bitrise-io/steps-remote-script-runner 10 | support_url: https://github.com/bitrise-io/steps-remote-script-runner/issues 11 | published_at: 2016-02-29T11:09:25.386525399+01:00 12 | source: 13 | git: https://github.com/bitrise-io/steps-remote-script-runner.git 14 | commit: 9af47356cc73a51160e060ca72ad5a326845d6a8 15 | host_os_tags: 16 | - osx-10.9 17 | - osx-10.10 18 | type_tags: 19 | - utility 20 | is_requires_admin_user: true 21 | is_always_run: false 22 | is_skippable: false 23 | run_if: "" 24 | inputs: 25 | - opts: 26 | description: | 27 | Bash Script URL which returns a *text* response (not an HTML one!) 28 | is_required: true 29 | title: Script URL 30 | script_url: "" 31 | -------------------------------------------------------------------------------- /steps/resource-archive/2.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: ZIP resource archive downloader 2 | summary: ZIP resource archive downloader 3 | description: Downloads and extracts a .ZIP archive to a specified path. 4 | website: https://github.com/bitrise-io/steps-resource-archive 5 | source_code_url: https://github.com/bitrise-io/steps-resource-archive 6 | support_url: https://github.com/bitrise-io/steps-resource-archive/issues 7 | published_at: 2015-09-10T17:03:10.344675485+02:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-resource-archive.git 10 | commit: d3756dd4bc2ed3f057ccc0ad766a4f2e24b7686e 11 | host_os_tags: 12 | - osx-10.9 13 | type_tags: 14 | - utility 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | inputs: 19 | - archive_url: "" 20 | opts: 21 | description: Path of the resource .ZIP file. 22 | is_dont_change_value: false 23 | is_expand: true 24 | is_required: true 25 | summary: "" 26 | title: Resource path 27 | - extract_to_path: "" 28 | opts: 29 | description: Resource extract path. 30 | is_dont_change_value: false 31 | is_expand: true 32 | is_required: true 33 | summary: "" 34 | title: Extract path 35 | -------------------------------------------------------------------------------- /steps/nunit-runner/assets/icon.svg: -------------------------------------------------------------------------------- 1 | nunit -------------------------------------------------------------------------------- /steps/nvm/0.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: NVM 2 | summary: Install NVM and select Node version 3 | description: | 4 | Install NVM and select Node version 5 | NVM = Node Version Manager - Simple bash script to manage multiple active node.js versions 6 | See https://github.com/creationix/nvm 7 | website: https://github.com/almouro/bitrise-nvm-step 8 | source_code_url: https://github.com/almouro/bitrise-nvm-step 9 | support_url: https://github.com/almouro/bitrise-nvm-step/issues 10 | published_at: 2016-07-02T22:15:30.551754569+02:00 11 | source: 12 | git: https://github.com/Almouro/bitrise-nvm-step.git 13 | commit: 39aa1b7d154d4498b16a5eb6a0f9d13bc479d62c 14 | host_os_tags: 15 | - osx-10.10 16 | project_type_tags: 17 | - ios 18 | type_tags: 19 | - script 20 | is_requires_admin_user: true 21 | is_always_run: false 22 | is_skippable: false 23 | inputs: 24 | - nvm_version: v0.31.0 25 | opts: 26 | description: | 27 | NVM version to be installed 28 | is_expand: false 29 | is_required: true 30 | title: NVM Version 31 | - node_version: 4.4.2 32 | opts: 33 | description: | 34 | Node version to be installed 35 | is_expand: false 36 | is_required: true 37 | title: Node version 38 | -------------------------------------------------------------------------------- /steps/random-quote/3.0.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Random Quote 2 | summary: |- 3 | Got no idea how to spice up your every day build notifications? How about a 4 | random quote to pass the time while your app is being installed on your device? 5 | description: |- 6 | Prints a random quote and saves it into the $quote environment variable (adds it to the ~/.bash_profile) 7 | Uses the http://www.iheartquotes.com API 8 | website: https://github.com/bitrise-io/steps-random-quote 9 | source_code_url: https://github.com/bitrise-io/steps-random-quote 10 | support_url: https://github.com/bitrise-io/steps-random-quote/issues 11 | published_at: 2016-08-01T12:28:57.683951092+02:00 12 | source: 13 | git: https://github.com/bitrise-io/steps-random-quote.git 14 | commit: f6c08c7883f78b848f499b6478d2deba22c1e634 15 | host_os_tags: 16 | - osx-10.10 17 | type_tags: 18 | - utility 19 | deps: 20 | brew: 21 | - name: go 22 | is_requires_admin_user: false 23 | is_always_run: false 24 | is_skippable: false 25 | run_if: "" 26 | outputs: 27 | - RANDOM_QUOTE: null 28 | opts: 29 | description: "" 30 | is_dont_change_value: true 31 | is_expand: false 32 | is_required: true 33 | summary: "" 34 | title: the quote 35 | -------------------------------------------------------------------------------- /steps/curl-ping/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 14 | 15 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /steps/random-quote/3.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Random Quote 2 | summary: |- 3 | Got no idea how to spice up your every day build notifications? How about a 4 | random quote to pass the time while your app is being installed on your device? 5 | description: | 6 | Prints a random quote and saves it into the $quote environment variable (adds it to the ~/.bash_profile) 7 | Uses the http://www.iheartquotes.com API 8 | website: https://github.com/bitrise-io/steps-random-quote 9 | source_code_url: https://github.com/bitrise-io/steps-random-quote 10 | support_url: https://github.com/bitrise-io/steps-random-quote/issues 11 | published_at: 2015-09-08T14:56:23.493268529+02:00 12 | source: 13 | git: https://github.com/bitrise-io/steps-random-quote.git 14 | commit: f875ec1b94069aae97713710018b5f8693c9a6bf 15 | host_os_tags: 16 | - osx-10.10 17 | type_tags: 18 | - utility 19 | dependencies: 20 | - manager: brew 21 | name: go 22 | is_requires_admin_user: false 23 | is_always_run: false 24 | is_skippable: false 25 | run_if: "" 26 | outputs: 27 | - RANDOM_QUOTE: null 28 | opts: 29 | description: "" 30 | is_dont_change_value: true 31 | is_expand: false 32 | is_required: true 33 | summary: "" 34 | title: the quote 35 | -------------------------------------------------------------------------------- /steps/amazon-s3-uploader/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 104 -------------------------------------------------------------------------------- /steps/appetize-deploy/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/sonarqube-scanner/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Artboard 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /steps/xamarin-insights/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Xamarin.Insights 2 | summary: Upload your dSym to Xamarin.Insights 3 | description: Upload your dSYM to Xamarin.Insights 4 | website: https://github.com/bitrise-steplib/steps-xamarin-insights 5 | source_code_url: https://github.com/bitrise-steplib/steps-xamarin-insights 6 | support_url: https://github.com/bitrise-steplib/steps-xamarin-insights/issues 7 | published_at: 2016-02-16T11:20:46.38038923+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-xamarin-insights.git 10 | commit: 998405eaac7bf366f69af388fdca547d9c2d4f08 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - ios 15 | - xamarin 16 | - cordova 17 | - ionic 18 | - react-native 19 | type_tags: 20 | - deploy 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | description: | 27 | API Key for Xamarin.Insights 28 | is_expand: true 29 | is_required: true 30 | title: API Key for Xamarin.Insights 31 | xamarin_insights_api_key: null 32 | - dsym_path: $BITRISE_DSYM_PATH 33 | opts: 34 | description: | 35 | Path to your dSYM file 36 | is_expand: true 37 | is_required: true 38 | title: Path to your dSYM file 39 | -------------------------------------------------------------------------------- /steps/ensure-clean-git/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Ensure clean git 2 | summary: |- 3 | Make sure your repo is clean as a whistle, no uncommitted changes, 4 | nothing to hide. 5 | description: |- 6 | Fails if there's any uncommitted change in the git repository. 7 | 8 | Calls `git status` and fails if it reports any changed/uncommitted file. 9 | website: https://github.com/bitrise-io/steps-ensure-clean-git 10 | source_code_url: https://github.com/bitrise-io/steps-ensure-clean-git 11 | support_url: https://github.com/bitrise-io/steps-ensure-clean-git/issues 12 | published_at: 2015-10-19T12:38:49.223321288+02:00 13 | source: 14 | git: https://github.com/bitrise-io/steps-ensure-clean-git.git 15 | commit: e869d49a9092cc556b0281b6ca4e3e9bd410006a 16 | host_os_tags: 17 | - osx-10.10 18 | type_tags: 19 | - utility 20 | is_requires_admin_user: false 21 | is_always_run: false 22 | is_skippable: false 23 | inputs: 24 | - dir_to_check: null 25 | opts: 26 | description: The path that will be scanned for any uncommitted files. By default 27 | it is the current directory. 28 | is_dont_change_value: false 29 | is_expand: true 30 | is_required: false 31 | summary: "" 32 | title: The directory to check if contains any uncommitted changes 33 | -------------------------------------------------------------------------------- /steps/codified-security-bitrise/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Codified Security 2 | summary: This step uploads your app to Codified Security for automated mobile app 3 | security testing 4 | description: |- 5 | This step uploads your app to Codified Security for automated mobile app security testing. 6 | 7 | https://codifiedsecurity.com 8 | website: https://bitbucket.org/codifiedldn/codified-security-bitrise 9 | published_at: 2017-04-24T11:19:06.686290651+02:00 10 | source: 11 | git: https://bitbucket.org/codifiedldn/codified-security-bitrise.git 12 | commit: d941c0e648ec869b99ea746fb423482903a8a069 13 | project_type_tags: 14 | - ios 15 | - android 16 | - xamarin 17 | type_tags: 18 | - test 19 | is_requires_admin_user: false 20 | is_always_run: false 21 | inputs: 22 | - codified_security_api_key: $CODIFIED_SECURITY_API_KEY 23 | opts: 24 | description: You can obtain your key from https://dashboard.codifiedsecurity.com/settings. 25 | You'll find it under Integrations tab as Api Key. 26 | is_required: true 27 | title: Codified Security API Key 28 | - ipa_path: $BITRISE_IPA_PATH 29 | opts: 30 | is_required: false 31 | title: IPA path 32 | - apk_path: $BITRISE_APK_PATH 33 | opts: 34 | is_required: false 35 | title: APK path 36 | -------------------------------------------------------------------------------- /steps/codified-security-bitrise/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Codified Security 2 | summary: This step uploads your app to Codified Security for automated mobile app 3 | security testing 4 | description: |- 5 | This step uploads your app to Codified Security for automated mobile app security testing. 6 | 7 | https://codifiedsecurity.com 8 | website: https://bitbucket.org/codifiedldn/codified-security-bitrise 9 | published_at: 2017-05-26T15:43:23.984921125+02:00 10 | source: 11 | git: https://bitbucket.org/codifiedldn/codified-security-bitrise.git 12 | commit: c8fccd8db19339f1fd9bdf80712f0c03b3c84ea8 13 | project_type_tags: 14 | - ios 15 | - android 16 | - xamarin 17 | type_tags: 18 | - test 19 | is_requires_admin_user: false 20 | is_always_run: false 21 | inputs: 22 | - codified_security_api_key: $CODIFIED_SECURITY_API_KEY 23 | opts: 24 | description: You can obtain your key from https://dashboard.codifiedsecurity.com/settings. 25 | You'll find it under Integrations tab as Api Key. 26 | is_required: true 27 | title: Codified Security API Key 28 | - ipa_path: $BITRISE_IPA_PATH 29 | opts: 30 | is_required: false 31 | title: IPA path 32 | - apk_path: $BITRISE_APK_PATH 33 | opts: 34 | is_required: false 35 | title: APK path 36 | -------------------------------------------------------------------------------- /steps/export-xcarchive/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 107 -------------------------------------------------------------------------------- /steps/secure-delete-path/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /steps/slack/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 9 | 11 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /steps/fastlane/2.1.3/step.yml: -------------------------------------------------------------------------------- 1 | title: fastlane 2 | summary: Runs your fastlane lane. 3 | website: https://github.com/bitrise-io/steps-fastlane 4 | source_code_url: https://github.com/bitrise-io/steps-fastlane 5 | support_url: https://github.com/bitrise-io/steps-fastlane/issues 6 | published_at: 2016-04-08T14:45:42.26374279+02:00 7 | source: 8 | git: https://github.com/bitrise-io/steps-fastlane.git 9 | commit: 30d7dc143c722f9a0847541bb24533a02e1307dc 10 | host_os_tags: 11 | - osx-10.10 12 | project_type_tags: 13 | - ios 14 | - android 15 | type_tags: 16 | - build 17 | - xcode 18 | - fastlane 19 | inputs: 20 | - lane: null 21 | opts: 22 | description: | 23 | fastlane lane to run 24 | $ fastlane [lane] 25 | is_required: true 26 | title: fastlane lane 27 | - opts: 28 | description: |- 29 | Use this option if the fastlane directory is not in your repository's root. 30 | 31 | Working directory should be the parent directory of your Fastfile's directory. 32 | 33 | Example: 34 | 35 | * If Fastfile path: `./here/is/my/fastlane/Fastfile` 36 | * Then Fastfile's directory: `./here/is/my/fastlane` 37 | * So Working Directory should be: `./here/is/my` 38 | title: Working directory 39 | work_dir: $BITRISE_SOURCE_DIR 40 | -------------------------------------------------------------------------------- /steps/start-android-emulator/0.9.7/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully. 3 | description: Start Android emulator and wait till it's booted fully. 4 | website: https://github.com/bitrise-steplib/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-start-android-emulator/issues 7 | published_at: 2016-02-02T18:01:42.502135352+01:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: c9c9bc0a85a285800e78e0428d395faca6883ba1 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_required: true 26 | title: Emulator to boot 27 | - android_home: $ANDROID_HOME 28 | opts: 29 | description: Android sdk path 30 | is_required: true 31 | title: Android sdk path 32 | outputs: 33 | - BITRISE_EMULATOR_SERIAL: null 34 | opts: 35 | description: Booted emulator serial 36 | title: Emulator serial 37 | -------------------------------------------------------------------------------- /steps/curl-ping/2.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Ping an URL with cURL 2 | description: |- 3 | Performs a [cURL](http://curl.haxx.se/) request on the given URL 4 | and reports the result (success / failed) of the response. 5 | summary: Ping an URL using cURL. You can also add optional parameters. 6 | website: https://github.com/bitrise-io/steps-curl-ping 7 | source_code_url: https://github.com/bitrise-io/steps-curl-ping 8 | support_url: https://github.com/bitrise-io/steps-curl-ping/issues 9 | published_at: 2015-09-07T14:02:39.346943329+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-curl-ping.git 12 | commit: 026f81518c50ca68323212f9029f2cf24ba2a58a 13 | host_os_tags: 14 | - osx-10.9 15 | type_tags: 16 | - utility 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | run_if: "" 21 | inputs: 22 | - opts: 23 | description: "" 24 | is_dont_change_value: false 25 | is_expand: false 26 | is_required: true 27 | summary: "" 28 | title: Full URL 29 | ping_url: "" 30 | - curl_params: "" 31 | opts: 32 | description: 'cURL parameters (like: `-dx ''key=some_data''`)' 33 | is_dont_change_value: false 34 | is_expand: false 35 | is_required: false 36 | summary: "" 37 | title: (optional) cURL parameters 38 | -------------------------------------------------------------------------------- /steps/gradle-runner/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Gradle Unit Test 2 | summary: Runs Unit Tests with `./gradlew`. 3 | description: Runs Unit Tests with `./gradlew`. You can specify the test tasks to run 4 | and the task flags to run ony specific files. 5 | website: https://github.com/bitrise-io/steps-gradle-runner 6 | source_code_url: https://github.com/bitrise-io/steps-gradle-runner 7 | support_url: https://github.com/bitrise-io/steps-gradle-runner/issues 8 | published_at: 2015-10-29T17:12:53.790629855Z 9 | source: 10 | git: https://github.com/bitrise-io/steps-gradle-runner.git 11 | commit: 2f12b73ab17e6f75971f3e17e6c87794f10a3064 12 | host_os_tags: 13 | - osx-10.10 14 | project_type_tags: 15 | - android 16 | type_tags: 17 | - gradle 18 | deps: 19 | check_only: 20 | - name: gradle 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | description: | 27 | Working directory of the step. 28 | You can leave it empty to don't change it. 29 | is_expand: true 30 | is_required: false 31 | title: Working directory 32 | workdir: $BITRISE_SOURCE_DIR 33 | - gradle_task: null 34 | opts: 35 | description: | 36 | Gradle task to run 37 | is_expand: true 38 | is_required: false 39 | title: Gradle task to run 40 | -------------------------------------------------------------------------------- /steps/remote-script-runner/2.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Remote Bash Script Runner 2 | summary: |- 3 | Found a great GitHub Gist that you'd like to use during your workflow? 4 | Just add the raw URL, Bitrise will download it and run it as a bash script! 5 | description: |- 6 | Downloads the content of the input url and runs it as a bash script. 7 | For example you can provide a GitHub Gist *raw* url. 8 | website: https://github.com/bitrise-io/steps-remote-script-runner 9 | source_code_url: https://github.com/bitrise-io/steps-remote-script-runner 10 | support_url: https://github.com/bitrise-io/steps-remote-script-runner/issues 11 | published_at: 2015-09-08T17:17:35.012335346+02:00 12 | source: 13 | git: https://github.com/bitrise-io/steps-remote-script-runner.git 14 | commit: 64c2c30a37d2ded7a4fbb72f24b515cdff5e87a8 15 | host_os_tags: 16 | - osx-10.9 17 | - osx-10.10 18 | type_tags: 19 | - script 20 | - bash 21 | - runner 22 | is_requires_admin_user: true 23 | is_always_run: false 24 | is_skippable: false 25 | run_if: "" 26 | inputs: 27 | - opts: 28 | description: | 29 | Bash Script URL which returns a *text* response (not an HTML one!) 30 | is_dont_change_value: false 31 | is_expand: false 32 | is_required: true 33 | summary: "" 34 | title: Script URL 35 | script_url: "" 36 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Recreate User Schemes 2 | summary: Recreate User Schemes 3 | description: "This step recreates default user schemes.\n\nIf no shared schemes exist 4 | in the project/workspace, step will recreate default user schemes, \njust like Xcode 5 | does. " 6 | website: https://github.com/bitrise-steplib/steps-recreate-user-schemes 7 | source_code_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes 8 | support_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes/issues 9 | published_at: 2017-05-18T14:42:35.130294652+02:00 10 | source: 11 | git: https://github.com/bitrise-steplib/steps-recreate-user-schemes.git 12 | commit: b768695bf7c9b084ec483d28080a77d636abe49b 13 | project_type_tags: 14 | - ios 15 | - macos 16 | type_tags: 17 | - utility 18 | toolkit: 19 | go: 20 | package_name: github.com/bitrise-steplib/steps-recreate-user-schemes 21 | deps: 22 | brew: 23 | - name: go 24 | apt_get: 25 | - name: golang 26 | bin_name: go 27 | is_requires_admin_user: false 28 | is_always_run: false 29 | is_skippable: false 30 | inputs: 31 | - opts: 32 | description: | 33 | A `.xcodeproj/.xcworkspace` path. 34 | is_required: true 35 | summary: "" 36 | title: Project or Workspace path 37 | project_path: null 38 | -------------------------------------------------------------------------------- /steps/recreate-user-schemes/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Recreate User Schemes 2 | summary: Recreate User Schemes 3 | description: "This step recreates default user schemes.\n\nIf no shared schemes exist 4 | in the project/workspace, step will recreate default user schemes, \njust like Xcode 5 | does. " 6 | website: https://github.com/bitrise-steplib/steps-recreate-user-schemes 7 | source_code_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes 8 | support_url: https://github.com/bitrise-steplib/steps-recreate-user-schemes/issues 9 | published_at: 2017-05-22T13:42:56.279467652+02:00 10 | source: 11 | git: https://github.com/bitrise-steplib/steps-recreate-user-schemes.git 12 | commit: 75ff408523e01a985a4b87f55cd5127654b84120 13 | project_type_tags: 14 | - ios 15 | - macos 16 | type_tags: 17 | - utility 18 | toolkit: 19 | go: 20 | package_name: github.com/bitrise-steplib/steps-recreate-user-schemes 21 | deps: 22 | brew: 23 | - name: go 24 | apt_get: 25 | - name: golang 26 | bin_name: go 27 | is_requires_admin_user: false 28 | is_always_run: false 29 | is_skippable: false 30 | inputs: 31 | - opts: 32 | description: | 33 | A `.xcodeproj/.xcworkspace` path. 34 | is_required: true 35 | summary: "" 36 | title: Project or Workspace path 37 | project_path: null 38 | -------------------------------------------------------------------------------- /steps/start-android-emulator/0.9.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully 3 | description: Start Android emulator and wait till it's booted fully 4 | website: https://github.com/bitrise-io/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-io/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-io/steps-start-android-emulator/issues 7 | published_at: 2015-12-05T09:38:31.251987686+01:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: aa07583d65af7c68d6fce309951c126416f21555 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_expand: true 26 | is_required: true 27 | title: Emulator to boot 28 | - android_home: $ANDROID_HOME 29 | opts: 30 | description: Android sdk path 31 | is_expand: true 32 | is_required: true 33 | title: Android sdk path 34 | outputs: 35 | - BITRISE_EMULATOR_SERIAL: null 36 | opts: 37 | description: Booted emulator serial 38 | title: Emulator serial 39 | -------------------------------------------------------------------------------- /_scripts/deploy/deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | THIS_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 4 | 5 | set -e 6 | 7 | if [ -z "${AWS_ACCESS_KEY_ID}" ] ; then 8 | echo " [!] No AWS_ACCESS_KEY_ID specified" 9 | exit 1 10 | fi 11 | if [ -z "${AWS_SECRET_ACCESS_KEY}" ] ; then 12 | echo " [!] No AWS_ACCESS_KEY_ID specified" 13 | exit 1 14 | fi 15 | if [ -z "${S3_UPLOAD_BUCKET}" ] ; then 16 | echo " [!] No AWS_ACCESS_KEY_ID specified" 17 | exit 1 18 | fi 19 | 20 | set -v 21 | 22 | # normalized repo_root_dir 23 | repo_root_dir="${THIS_SCRIPT_DIR}/../.." 24 | cd "${repo_root_dir}" 25 | repo_root_dir="$(pwd)" 26 | echo "repo_root_dir: ${repo_root_dir}" 27 | # other paths 28 | tmp_work_dir="${repo_root_dir}/_tmp" 29 | steps_dir_path="${repo_root_dir}/steps" 30 | 31 | 32 | mkdir -p "${tmp_work_dir}" 33 | cd "${tmp_work_dir}" 34 | 35 | # export GOPATH="${tmp_work_dir}/go" 36 | # mkdir -p "${GOPATH}/src" 37 | # go get gopkg.in/yaml.v2 38 | 39 | go run "${THIS_SCRIPT_DIR}/deploy_to_s3.go" \ 40 | -accesskey "${AWS_ACCESS_KEY_ID}" \ 41 | -secretkey "${AWS_SECRET_ACCESS_KEY}" \ 42 | -s3bucket "${S3_UPLOAD_BUCKET}" \ 43 | -s3bucket-region "${S3_UPLOAD_BUCKET_REGION}" \ 44 | -stepsdir "${steps_dir_path}" \ 45 | -collection-root-dir "${repo_root_dir}" \ 46 | -collection-spec-json "${SPEC_JSON_PATH}" 47 | -------------------------------------------------------------------------------- /steps/yarn/0.0.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Run yarn command 2 | summary: Runs `yarn` with the given command and args. 3 | description: Runs `yarn` with the given command and args. 4 | website: https://github.com/jonoirwinrsa/steps-yarn 5 | source_code_url: https://github.com/jonoirwinrsa/steps-yarn 6 | support_url: https://github.com/jonoirwinrsa/steps-yarn/issues 7 | published_at: 2016-10-20T13:25:54.991730369+02:00 8 | source: 9 | git: https://github.com/jonoirwinrsa/steps-yarn.git 10 | commit: 9b65131340ace1399bee8b2916eb2d65b5714db7 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - react-native 15 | type_tags: 16 | - yarn 17 | deps: 18 | brew: 19 | - name: node 20 | - name: yarn 21 | inputs: 22 | - opts: 23 | description: | 24 | Working directory of the step. 25 | You can leave it empty to not change it. 26 | title: Working directory 27 | workdir: $BITRISE_SOURCE_DIR 28 | - command: null 29 | opts: 30 | description: Specify the command to run with `yarn`. For example `add`. 31 | title: The `yarn` command to run 32 | - args: null 33 | opts: 34 | description: |- 35 | Arguments are added to the `yarn` command. You can specify multiple arguments, separated 36 | by a space character. For example `-dd -ll` 37 | title: Arguments for running `yarn` commands 38 | -------------------------------------------------------------------------------- /steps/certificate-and-profile-installer/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /steps/npm/0.1.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Run npm command 2 | summary: Runs `npm` with the given command and args. 3 | description: Runs `npm` with the given command and args. 4 | website: https://github.com/bitrise-steplib/steps-npm 5 | source_code_url: https://github.com/bitrise-steplib/steps-npm 6 | support_url: https://github.com/bitrise-steplib/steps-npm/issues 7 | published_at: 2016-08-12T11:10:34.380129264+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-npm.git 10 | commit: 2b365a0254854b29af6589ad4cc9d2ea97f253cb 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - react-native 15 | type_tags: 16 | - npm 17 | deps: 18 | brew: 19 | - name: node 20 | inputs: 21 | - opts: 22 | description: | 23 | Working directory of the step. 24 | You can leave it empty to not change it. 25 | title: Working directory 26 | workdir: $BITRISE_SOURCE_DIR 27 | - command: null 28 | opts: 29 | description: Specify the command to run with `npm`. For example `install`, or 30 | `test`. 31 | title: The `npm` command to run 32 | - args: null 33 | opts: 34 | description: |- 35 | Arguments are added to the `npm` command. You can specify multiple arguments, separated 36 | by a space character. For example `-dd -ll` 37 | title: Arguments for running `npm` commands 38 | -------------------------------------------------------------------------------- /steps/npm/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Run npm command 2 | summary: Runs `npm` with the given command and args. 3 | description: Runs `npm` with the given command and args. 4 | website: https://github.com/bitrise-steplib/steps-npm 5 | source_code_url: https://github.com/bitrise-steplib/steps-npm 6 | support_url: https://github.com/bitrise-steplib/steps-npm/issues 7 | published_at: 2017-03-08T14:49:50.634596109+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-npm.git 10 | commit: a708ceeed0f5bd5ae7325084d2c2fba4fa213e85 11 | host_os_tags: 12 | - osx-10.10 13 | type_tags: 14 | - utility 15 | deps: 16 | brew: 17 | - name: node 18 | apt_get: 19 | - name: nodejs 20 | - name: npm 21 | inputs: 22 | - opts: 23 | description: | 24 | Working directory of the step. 25 | You can leave it empty to not change it. 26 | title: Working directory 27 | workdir: $BITRISE_SOURCE_DIR 28 | - command: null 29 | opts: 30 | description: |- 31 | Specify the command with arguments to run with `npm`. 32 | 33 | This input value will be append to the end of the `npm` command call. 34 | 35 | For example: 36 | 37 | - `install` -> `npm install` 38 | - `install -g cordova` -> `npm install -g cordova` 39 | is_required: true 40 | title: The `npm` command with arguments to run 41 | -------------------------------------------------------------------------------- /steps/start-android-emulator/0.9.4/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully. 3 | description: Start Android emulator and wait till it's booted fully. 4 | website: https://github.com/bitrise-steplib/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-start-android-emulator/issues 7 | published_at: 2015-12-18T15:48:17.319765163+01:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: 8b82b3eb202c312c3939a1627c8bddb00b2937d5 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_expand: true 26 | is_required: true 27 | title: Emulator to boot 28 | - android_home: $ANDROID_HOME 29 | opts: 30 | description: Android sdk path 31 | is_expand: true 32 | is_required: true 33 | title: Android sdk path 34 | outputs: 35 | - BITRISE_EMULATOR_SERIAL: null 36 | opts: 37 | description: Booted emulator serial 38 | title: Emulator serial 39 | -------------------------------------------------------------------------------- /steps/start-android-emulator/0.9.5/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully. 3 | description: Start Android emulator and wait till it's booted fully. 4 | website: https://github.com/bitrise-steplib/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-start-android-emulator/issues 7 | published_at: 2016-01-27T15:21:14.539726848+01:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: 26372f7d75e3e143a9fa7bedf195c293db9a1d3c 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_expand: true 26 | is_required: true 27 | title: Emulator to boot 28 | - android_home: $ANDROID_HOME 29 | opts: 30 | description: Android sdk path 31 | is_expand: true 32 | is_required: true 33 | title: Android sdk path 34 | outputs: 35 | - BITRISE_EMULATOR_SERIAL: null 36 | opts: 37 | description: Booted emulator serial 38 | title: Emulator serial 39 | -------------------------------------------------------------------------------- /steps/start-android-emulator/0.9.3/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully. 3 | description: Start Android emulator and wait till it's booted fully. 4 | website: https://github.com/bitrise-steplib/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-start-android-emulator/issues 7 | published_at: 2015-12-17T16:13:57.800712019+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-start-android-emulator.git 10 | commit: fdb9e432bb1bfe69c6a584dfce1b4ec52a9fbc2d 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_expand: true 26 | is_required: true 27 | title: Emulator to boot 28 | - android_home: $ANDROID_HOME 29 | opts: 30 | description: Android sdk path 31 | is_expand: true 32 | is_required: true 33 | title: Android sdk path 34 | outputs: 35 | - BITRISE_EMULATOR_SERIAL: null 36 | opts: 37 | description: Booted emulator serial 38 | title: Emulator serial 39 | -------------------------------------------------------------------------------- /steps/activate-ssh-key/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /steps/aws-device-farm-runner/assets/icon.svg: -------------------------------------------------------------------------------- 1 | Artboard 105 -------------------------------------------------------------------------------- /steps/nuget-restore/0.9.2/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2016-06-21T15:03:32.766008162+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: 1c10d5be08912008ee8f6687df977136f1868cf0 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | is_requires_admin_user: true 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin solution 23 | is_required: true 24 | title: Path to Xamarin solution 25 | xamarin_solution: $BITRISE_PROJECT_PATH 26 | - nuget_version: null 27 | opts: 28 | description: | 29 | The default NuGet restore step uses the NuGet version that ships with Xamarin. 30 | 31 | Specify this input if you would like to use a custom NuGet version. 32 | You can find all the available NuGet distribution here: https://dist.nuget.org/index.html. 33 | 34 | Format examples: 35 | 36 | - 2.8.6 37 | - latest 38 | title: NuGet version 39 | -------------------------------------------------------------------------------- /steps/nuget-restore/0.9.3/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2016-08-11T12:16:24.406903306+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: 2cce588ead7d01c37c72f99fff7f0e95a9b46bc7 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | is_requires_admin_user: true 16 | is_always_run: false 17 | is_skippable: false 18 | run_if: "" 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin solution 23 | is_required: true 24 | title: Path to Xamarin solution 25 | xamarin_solution: $BITRISE_PROJECT_PATH 26 | - nuget_version: null 27 | opts: 28 | description: | 29 | The default NuGet restore step uses the NuGet version that ships with Xamarin. 30 | 31 | Specify this input if you would like to use a custom NuGet version. 32 | You can find all the available NuGet distribution here: https://dist.nuget.org/index.html. 33 | 34 | Format examples: 35 | 36 | - 2.8.6 37 | - latest 38 | title: NuGet version 39 | -------------------------------------------------------------------------------- /steps/fastlane/2.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Fastlane 2 | summary: |- 3 | You probably heard of the awesome fastlane. We are proud to welcome this 4 | great tool in the integrations section. Add the step to your workflow and 5 | enjoy your ride with us in the fastlane! 6 | website: https://github.com/bitrise-io/steps-fastlane 7 | source_code_url: https://github.com/bitrise-io/steps-fastlane 8 | support_url: https://github.com/bitrise-io/steps-fastlane/issues 9 | published_at: 2015-09-10T16:48:13.692401803+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-fastlane.git 12 | commit: c4e819193bcaceef0c4356653d4bf7fa5ce93fd6 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - build 19 | - xcode 20 | - fastlane 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | run_if: "" 25 | inputs: 26 | - lane: null 27 | opts: 28 | description: | 29 | Fastlane lane to run 30 | $ fastlane [lane] 31 | is_dont_change_value: false 32 | is_expand: true 33 | is_required: true 34 | summary: "" 35 | title: Fastlane lane 36 | - opts: 37 | description: | 38 | Work directory 39 | is_dont_change_value: false 40 | is_expand: true 41 | is_required: true 42 | summary: "" 43 | title: Work directory 44 | work_dir: $BITRISE_SOURCE_DIR 45 | -------------------------------------------------------------------------------- /steps/fastlane/2.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Fastlane 2 | summary: |- 3 | You probably heard of the awesome fastlane. We are proud to welcome this 4 | great tool in the integrations section. Add the step to your workflow and 5 | enjoy your ride with us in the fastlane! 6 | website: https://github.com/bitrise-io/steps-fastlane 7 | source_code_url: https://github.com/bitrise-io/steps-fastlane 8 | support_url: https://github.com/bitrise-io/steps-fastlane/issues 9 | published_at: 2015-11-11T12:55:21.163194699+01:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-fastlane.git 12 | commit: aa852e4ab93b50523ab5a05b5dbed42b492a0f06 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - build 19 | - xcode 20 | - fastlane 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | run_if: "" 25 | inputs: 26 | - lane: null 27 | opts: 28 | description: | 29 | Fastlane lane to run 30 | $ fastlane [lane] 31 | is_dont_change_value: false 32 | is_expand: true 33 | is_required: true 34 | summary: "" 35 | title: Fastlane lane 36 | - opts: 37 | description: | 38 | Work directory 39 | is_dont_change_value: false 40 | is_expand: true 41 | is_required: true 42 | summary: "" 43 | title: Work directory 44 | work_dir: $BITRISE_SOURCE_DIR 45 | -------------------------------------------------------------------------------- /steps/fastlane/2.1.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Fastlane 2 | summary: |- 3 | You probably heard of the awesome fastlane. We are proud to welcome this 4 | great tool in the integrations section. Add the step to your workflow and 5 | enjoy your ride with us in the fastlane! 6 | website: https://github.com/bitrise-io/steps-fastlane 7 | source_code_url: https://github.com/bitrise-io/steps-fastlane 8 | support_url: https://github.com/bitrise-io/steps-fastlane/issues 9 | published_at: 2015-12-12T17:22:28.751748689+01:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-fastlane.git 12 | commit: 74bfe38ce92c265a0c9eb0498e6d612557b1336e 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - build 19 | - xcode 20 | - fastlane 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | run_if: "" 25 | inputs: 26 | - lane: null 27 | opts: 28 | description: | 29 | Fastlane lane to run 30 | $ fastlane [lane] 31 | is_dont_change_value: false 32 | is_expand: true 33 | is_required: true 34 | summary: "" 35 | title: Fastlane lane 36 | - opts: 37 | description: | 38 | Work directory 39 | is_dont_change_value: false 40 | is_expand: true 41 | is_required: true 42 | summary: "" 43 | title: Work directory 44 | work_dir: $BITRISE_SOURCE_DIR 45 | -------------------------------------------------------------------------------- /steps/gradle-coveralls/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Gradle Coveralls 2 | summary: Runs Coveralls with `./gradlew`. 3 | description: Sends code coverage to www.coveralls.io. Uses `./gradlew coveralls` task. 4 | You have to configure [org.kt3k.gradle.plugin:coveralls-gradle-plugin](https://github.com/kt3k/coveralls-gradle-plugin) 5 | in your project first. 6 | website: https://github.com/donvigo/steps-gradle-coveralls 7 | source_code_url: https://github.com/donvigo/steps-gradle-coveralls 8 | support_url: https://github.com/donvigo/steps-gradle-coveralls/issues 9 | published_at: 2016-01-17T21:09:55.984310417+02:00 10 | source: 11 | git: https://github.com/donvigo/steps-gradle-coveralls.git 12 | commit: 630046c6d818d35760ef2a1c73cecb3c777ce9c9 13 | host_os_tags: 14 | - ubuntu 15 | project_type_tags: 16 | - android 17 | type_tags: 18 | - coveralls 19 | - gradle 20 | is_requires_admin_user: false 21 | is_always_run: false 22 | is_skippable: true 23 | inputs: 24 | - gradlew_file_path: $GRADLEW_PATH 25 | opts: 26 | description: | 27 | Path for the gradlew file 28 | is_expand: true 29 | is_required: true 30 | title: Path for the gradlew file 31 | - coveralls_task: coveralls 32 | opts: 33 | description: | 34 | The coveralls task to execute by gradlew 35 | is_expand: true 36 | is_required: true 37 | title: Coveralls gradle task 38 | -------------------------------------------------------------------------------- /steps/cocoapods-install/1.2.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaPods install 2 | summary: |- 3 | You don't need to keep the installed pods in your repo, simply add this step 4 | and Bitrise will do the pod install for you on the VM! 5 | description: Run CocoaPods install (`$ pod install`) in your App's directory. 6 | website: https://github.com/bitrise-io/steps-cocoapods-install 7 | source_code_url: https://github.com/bitrise-io/steps-cocoapods-install 8 | support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues 9 | published_at: 2016-05-19T11:47:12.983878172+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-cocoapods-install.git 12 | commit: 3cf12db215cab82304764193d03e48139638c82a 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - xcode 19 | - cocoapods 20 | - pod 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | is_required: true 27 | title: Source Code Directory path. 28 | source_root_path: $BITRISE_SOURCE_DIR 29 | - is_update_cocoapods: "false" 30 | opts: 31 | description: | 32 | Should update the system installed CocoaPods 33 | to the latest version? 34 | is_expand: false 35 | is_required: true 36 | title: Update CocoaPods version? 37 | value_options: 38 | - "true" 39 | - "false" 40 | -------------------------------------------------------------------------------- /steps/cocoapods-install/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaPods install 2 | description: Run CocoaPods install (`$ pod install`) in your App's directory. 3 | summary: |- 4 | You don't need to keep the installed pods in your repo, simply add this step 5 | and Bitrise will do the pod install for you on the VM! 6 | website: https://github.com/bitrise-io/steps-cocoapods-install 7 | source_code_url: https://github.com/bitrise-io/steps-cocoapods-install 8 | support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues 9 | published_at: 2015-09-03T21:53:22.634653249+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-cocoapods-install.git 12 | commit: eafe1df6d114b263142450105ee434775b19fbaf 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - xcode 19 | - cocoapods 20 | - pod 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | is_expand: true 27 | is_required: true 28 | title: Source Code Directory path. 29 | source_root_path: $BITRISE_SOURCE_DIR 30 | - is_update_cocoapods: "true" 31 | opts: 32 | description: | 33 | Should update the installed CocoaPods version before using it? 34 | is_expand: false 35 | is_required: true 36 | title: Update CocoaPods version? 37 | value_options: 38 | - "true" 39 | - "false" 40 | -------------------------------------------------------------------------------- /steps/cocoapods-install/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaPods install 2 | description: Run CocoaPods install (`$ pod install`) in your App's directory. 3 | summary: |- 4 | You don't need to keep the installed pods in your repo, simply add this step 5 | and Bitrise will do the pod install for you on the VM! 6 | website: https://github.com/bitrise-io/steps-cocoapods-install 7 | source_code_url: https://github.com/bitrise-io/steps-cocoapods-install 8 | support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues 9 | published_at: 2015-09-03T22:06:42.215452936+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-cocoapods-install.git 12 | commit: 4365217c355a830c0127a643c62c804b6706ff79 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - xcode 19 | - cocoapods 20 | - pod 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | is_expand: true 27 | is_required: true 28 | title: Source Code Directory path. 29 | source_root_path: $BITRISE_SOURCE_DIR 30 | - is_update_cocoapods: "true" 31 | opts: 32 | description: | 33 | Should update the installed CocoaPods version before using it? 34 | is_expand: false 35 | is_required: true 36 | title: Update CocoaPods version? 37 | value_options: 38 | - "true" 39 | - "false" 40 | -------------------------------------------------------------------------------- /steps/cocoapods-install/1.0.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaPods install 2 | summary: |- 3 | You don't need to keep the installed pods in your repo, simply add this step 4 | and Bitrise will do the pod install for you on the VM! 5 | description: Run CocoaPods install (`$ pod install`) in your App's directory. 6 | website: https://github.com/bitrise-io/steps-cocoapods-install 7 | source_code_url: https://github.com/bitrise-io/steps-cocoapods-install 8 | support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues 9 | published_at: 2015-09-21T14:46:55.154530128+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-cocoapods-install.git 12 | commit: d2b3466ae88bc7b86581120d9d2c54ade94438a7 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - xcode 19 | - cocoapods 20 | - pod 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | is_expand: true 27 | is_required: true 28 | title: Source Code Directory path. 29 | source_root_path: $BITRISE_SOURCE_DIR 30 | - is_update_cocoapods: "true" 31 | opts: 32 | description: | 33 | Should update the installed CocoaPods version before using it? 34 | is_expand: false 35 | is_required: true 36 | title: Update CocoaPods version? 37 | value_options: 38 | - "true" 39 | - "false" 40 | -------------------------------------------------------------------------------- /steps/cocoapods-install/1.0.3/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaPods install 2 | summary: |- 3 | You don't need to keep the installed pods in your repo, simply add this step 4 | and Bitrise will do the pod install for you on the VM! 5 | description: Run CocoaPods install (`$ pod install`) in your App's directory. 6 | website: https://github.com/bitrise-io/steps-cocoapods-install 7 | source_code_url: https://github.com/bitrise-io/steps-cocoapods-install 8 | support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues 9 | published_at: 2015-10-05T14:24:34.792859893+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-cocoapods-install.git 12 | commit: 1a9b6077b32debef39e2999f00a046cd9f5c110f 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - xcode 19 | - cocoapods 20 | - pod 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | is_expand: true 27 | is_required: true 28 | title: Source Code Directory path. 29 | source_root_path: $BITRISE_SOURCE_DIR 30 | - is_update_cocoapods: "true" 31 | opts: 32 | description: | 33 | Should update the installed CocoaPods version before using it? 34 | is_expand: false 35 | is_required: true 36 | title: Update CocoaPods version? 37 | value_options: 38 | - "true" 39 | - "false" 40 | -------------------------------------------------------------------------------- /steps/codecov/1.1.4/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: |- 4 | Reduce technical debt with visualized test performance, 5 | faster code reviews and workflow enhancements. 6 | You can now upload your code coverage files to Codecov every time you kick off a build! 7 | website: https://github.com/bitrise-io/steps-codecov 8 | source_code_url: https://github.com/bitrise-io/steps-codecov 9 | support_url: https://github.com/bitrise-io/steps-codecov/issues 10 | published_at: 2017-03-20T11:14:29.540634683+01:00 11 | source: 12 | git: https://github.com/bitrise-io/steps-codecov.git 13 | commit: ee08758b36b54b8d1aab3b70519a27adff4542b4 14 | host_os_tags: 15 | - osx-10.10 16 | - ubuntu-14.04 17 | type_tags: 18 | - test 19 | is_requires_admin_user: false 20 | is_always_run: false 21 | is_skippable: true 22 | inputs: 23 | - CODECOV_TOKEN: null 24 | opts: 25 | description: | 26 | Codecov.io repository upload token 27 | is_required: true 28 | title: Codecov.io token 29 | - opts: 30 | description: |- 31 | Options to pass along to the Codecov uploader. 32 | You can use multiple options, separated by a space. 33 | Review all options at https://github.com/codecov/codecov-bash 34 | Example: `-F unittests -J '^Project'` 35 | title: Additional options for Codecov call 36 | other_options: null 37 | -------------------------------------------------------------------------------- /steps/cocoapods-install/1.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaPods install 2 | summary: |- 3 | You don't need to keep the installed pods in your repo, simply add this step 4 | and Bitrise will do the pod install for you on the VM! 5 | description: Run CocoaPods install (`$ pod install`) in your App's directory. 6 | website: https://github.com/bitrise-io/steps-cocoapods-install 7 | source_code_url: https://github.com/bitrise-io/steps-cocoapods-install 8 | support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues 9 | published_at: 2016-01-11T10:42:25.932239552+01:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-cocoapods-install.git 12 | commit: b2f6195fb6f136fad10c55b0683eebdf4de68dfa 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - xcode 19 | - cocoapods 20 | - pod 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | is_expand: true 27 | is_required: true 28 | title: Source Code Directory path. 29 | source_root_path: $BITRISE_SOURCE_DIR 30 | - is_update_cocoapods: "false" 31 | opts: 32 | description: | 33 | Should update the system installed CocoaPods 34 | to the latest version? 35 | is_expand: false 36 | is_required: true 37 | title: Update CocoaPods version? 38 | value_options: 39 | - "true" 40 | - "false" 41 | -------------------------------------------------------------------------------- /steps/cocoapods-install/1.2.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Run CocoaPods install 2 | summary: |- 3 | You don't need to keep the installed pods in your repo, simply add this step 4 | and Bitrise will do the pod install for you on the VM! 5 | description: Run CocoaPods install (`$ pod install`) in your App's directory. 6 | website: https://github.com/bitrise-io/steps-cocoapods-install 7 | source_code_url: https://github.com/bitrise-io/steps-cocoapods-install 8 | support_url: https://github.com/bitrise-io/steps-cocoapods-install/issues 9 | published_at: 2016-04-13T17:42:41.972675095+02:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-cocoapods-install.git 12 | commit: 27ee14cae1562c1f62d71edb796f8f95140898da 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - xcode 19 | - cocoapods 20 | - pod 21 | is_requires_admin_user: false 22 | is_always_run: false 23 | is_skippable: false 24 | inputs: 25 | - opts: 26 | is_expand: true 27 | is_required: true 28 | title: Source Code Directory path. 29 | source_root_path: $BITRISE_SOURCE_DIR 30 | - is_update_cocoapods: "false" 31 | opts: 32 | description: | 33 | Should update the system installed CocoaPods 34 | to the latest version? 35 | is_expand: false 36 | is_required: true 37 | title: Update CocoaPods version? 38 | value_options: 39 | - "true" 40 | - "false" 41 | -------------------------------------------------------------------------------- /steps/create-android-emulator/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/git-clone-extended/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /steps/git-tag/1.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Git tag 2 | summary: A simple step that create a tag to the current commit 3 | description: A simple step that create a tag to the current commit 4 | website: https://github.com/Itelios/bitrise-steps-git-tag 5 | source_code_url: https://github.com/Itelios/bitrise-steps-git-tag 6 | support_url: https://github.com/Itelios/bitrise-steps-git-tag/issues 7 | published_at: 2016-12-05T10:05:39.168932446+01:00 8 | source: 9 | git: https://github.com/Itelios/bitrise-steps-git-tag.git 10 | commit: ae8d7cbe28abacc68e9612808bdfbb15623b121c 11 | host_os_tags: 12 | - osx-10.10 13 | type_tags: 14 | - utility 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | inputs: 19 | - opts: 20 | is_expand: true 21 | is_required: true 22 | summary: You can set a custom tag or keep default value to tag with current build 23 | number 24 | title: Tag to set on current commit 25 | tag: $BITRISE_BUILD_NUMBER 26 | - opts: 27 | is_expand: true 28 | is_required: false 29 | title: The message associated to the tag in case you want an annoted tag 30 | tag_message: null 31 | - opts: 32 | is_dont_change_value: true 33 | is_expand: true 34 | is_required: true 35 | title: Determine if your want to push the tag to your remote repository or not 36 | value_options: 37 | - "true" 38 | - "false" 39 | push: "true" 40 | -------------------------------------------------------------------------------- /steps/git-tag/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Git tag 2 | summary: A simple step that create a tag to the current commit 3 | description: A simple step that create a tag to the current commit 4 | website: https://github.com/Itelios/bitrise-steps-git-tag 5 | source_code_url: https://github.com/Itelios/bitrise-steps-git-tag 6 | support_url: https://github.com/Itelios/bitrise-steps-git-tag/issues 7 | published_at: 2015-12-11T16:50:07.069088152+01:00 8 | source: 9 | git: https://github.com/Itelios/bitrise-steps-git-tag.git 10 | commit: 159632ca375ed7a90fd649f8daddf1f5262fb56f 11 | host_os_tags: 12 | - osx-10.10 13 | type_tags: 14 | - git 15 | - vcs 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | inputs: 20 | - opts: 21 | is_expand: true 22 | is_required: true 23 | summary: You can set a custom tag or keep default value to tag with current build 24 | number 25 | title: Tag to set on current commit 26 | tag: $BITRISE_BUILD_NUMBER 27 | - opts: 28 | is_expand: true 29 | is_required: false 30 | title: The message associated to the tag in case you want an annoted tag 31 | tag_message: null 32 | - opts: 33 | is_dont_change_value: true 34 | is_expand: true 35 | is_required: true 36 | title: Determine if your want to push the tag to your remote repository or not 37 | value_options: 38 | - "true" 39 | - "false" 40 | push: true 41 | -------------------------------------------------------------------------------- /steps/set-android-manifest-versions/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 11 | Rectangle 1 + # 12 | Created with Sketch. 13 | 14 | 15 | 16 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /steps/cocoapods-install/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 12 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /steps/karma-jasmine-runner/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Karma Jasmine Test Runner 2 | summary: Karma Jasmine Test Runner 3 | description: Karma Jasmine Test Runner 4 | website: https://github.com/bitrise-community/steps-karma-jasmine-runner 5 | source_code_url: https://github.com/bitrise-community/steps-karma-jasmine-runner 6 | support_url: https://github.com/bitrise-community/steps-karma-jasmine-runner/issues 7 | published_at: 2017-04-27T17:15:00.375064985+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-karma-jasmine-runner.git 10 | commit: 6853e7fba38826e968bf650bb88aedf44046db77 11 | project_type_tags: 12 | - cordova 13 | type_tags: 14 | - build 15 | toolkit: 16 | go: 17 | package_name: github.com/bitrise-community/steps-karma-jasmine-runner 18 | deps: 19 | brew: 20 | - name: go 21 | inputs: 22 | - opts: 23 | is_required: true 24 | title: Working directory 25 | workdir: $BITRISE_SOURCE_DIR 26 | - browsers: Safary 27 | opts: 28 | description: |- 29 | Use this input to specify which browser to use by karma start command. 30 | Comma separated list of browsers (eg. `Safari,Chrome,Firefox`). 31 | is_required: true 32 | title: List of browsers to start 33 | - options: null 34 | opts: 35 | description: Use this input to specify custom options, to append to the end of 36 | the karma start command. 37 | title: Options to append to the karma start command 38 | -------------------------------------------------------------------------------- /steps/karma-jasmine-runner/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Karma Jasmine Test Runner 2 | summary: Karma Jasmine Test Runner 3 | description: Karma Jasmine Test Runner 4 | website: https://github.com/bitrise-community/steps-karma-jasmine-runner 5 | source_code_url: https://github.com/bitrise-community/steps-karma-jasmine-runner 6 | support_url: https://github.com/bitrise-community/steps-karma-jasmine-runner/issues 7 | published_at: 2017-04-28T15:30:49.260119785+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-karma-jasmine-runner.git 10 | commit: 15e8e7bd55624d70041334c05766e220446c060c 11 | project_type_tags: 12 | - cordova 13 | type_tags: 14 | - build 15 | toolkit: 16 | go: 17 | package_name: github.com/bitrise-community/steps-karma-jasmine-runner 18 | deps: 19 | brew: 20 | - name: go 21 | inputs: 22 | - opts: 23 | is_required: true 24 | title: Working directory 25 | workdir: $BITRISE_SOURCE_DIR 26 | - browsers: Safari 27 | opts: 28 | description: |- 29 | Use this input to specify which browser to use by karma start command. 30 | Comma separated list of browsers (eg. `Safari,Chrome,Firefox`). 31 | is_required: true 32 | title: List of browsers to start 33 | - options: null 34 | opts: 35 | description: Use this input to specify custom options, to append to the end of 36 | the karma start command. 37 | title: Options to append to the karma start command 38 | -------------------------------------------------------------------------------- /steps/push-notification-with-parse/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 16 | 17 | P 18 | 19 | -------------------------------------------------------------------------------- /steps/yarn/0.0.4/step.yml: -------------------------------------------------------------------------------- 1 | title: Run yarn command 2 | summary: Runs `yarn` with the given command and args. 3 | description: Runs `yarn` with the given command and args. 4 | website: https://github.com/jonoirwinrsa/steps-yarn 5 | source_code_url: https://github.com/jonoirwinrsa/steps-yarn 6 | support_url: https://github.com/jonoirwinrsa/steps-yarn/issues 7 | published_at: 2017-02-15T12:28:39.004156417+02:00 8 | source: 9 | git: https://github.com/jonoirwinrsa/steps-yarn.git 10 | commit: ec2279ecaf33360420509e7dd438cfe70300ea02 11 | host_os_tags: 12 | - osx-10.11 13 | type_tags: 14 | - dependency 15 | deps: 16 | brew: 17 | - name: node 18 | - name: yarn 19 | is_always_run: false 20 | is_skippable: false 21 | inputs: 22 | - opts: 23 | description: | 24 | Working directory of the step. 25 | You can leave it empty to not change it. 26 | title: Working directory 27 | workdir: $BITRISE_SOURCE_DIR 28 | - command: null 29 | opts: 30 | description: | 31 | Specify the command to run with `yarn`. For example `add`. 32 | Leave it blank to install dependencies. 33 | is_required: false 34 | title: The `yarn` command to run 35 | - args: null 36 | opts: 37 | description: |- 38 | Arguments are added to the `yarn` command. You can specify multiple arguments, separated 39 | by a space character. For example `global` 40 | title: Arguments for running `yarn` commands 41 | -------------------------------------------------------------------------------- /steps/set-xcode-plist-value/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Set Xcode Plist Value 2 | summary: |- 3 | Sets the value of a key in the specified Info.plist file. A great 4 | way to inject variables into the plist. 5 | description: Set the value of a key in the project's Info.plist file. 6 | website: https://github.com/Reedyuk/set-xcode-plist-value 7 | source_code_url: https://github.com/Reedyuk/set-xcode-plist-value 8 | support_url: https://github.com/Reedyuk/set-xcode-plist-value/issues 9 | published_at: 2016-06-19T11:47:37.496457544+01:00 10 | source: 11 | git: https://github.com/Reedyuk/set-xcode-plist-value.git 12 | commit: 23e04e8848164e5a1cf777636c522f502474492c 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | - xamarin 18 | - cordova 19 | - ionic 20 | - react-native 21 | type_tags: 22 | - utility 23 | deps: 24 | check_only: 25 | - name: xcode 26 | run_if: .IsCI 27 | inputs: 28 | - opts: 29 | description: | 30 | Path to the given project's Info.plist file. 31 | is_required: true 32 | title: Info.plist file path 33 | plist_path: null 34 | - opts: 35 | description: | 36 | The key in the plist file you wish to set. 37 | is_required: true 38 | title: Plist key 39 | plist_key: null 40 | - opts: 41 | description: | 42 | The value of the key in the plist file you wish to set. 43 | is_required: true 44 | title: Plist value 45 | plist_value: null 46 | -------------------------------------------------------------------------------- /steps/android-sdk-update/assets/icon.svg: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /steps/fastlane/2.1.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Fastlane 2 | summary: |- 3 | You probably heard of the awesome fastlane. We are proud to welcome this 4 | great tool in the integrations section. Add the step to your workflow and 5 | enjoy your ride with us in the fastlane! 6 | website: https://github.com/bitrise-io/steps-fastlane 7 | source_code_url: https://github.com/bitrise-io/steps-fastlane 8 | support_url: https://github.com/bitrise-io/steps-fastlane/issues 9 | published_at: 2016-02-26T15:19:44.94592212+01:00 10 | source: 11 | git: https://github.com/bitrise-io/steps-fastlane.git 12 | commit: ede215ca318bd897fedf97d40f8a886450df6d36 13 | host_os_tags: 14 | - osx-10.10 15 | project_type_tags: 16 | - ios 17 | type_tags: 18 | - build 19 | - xcode 20 | - fastlane 21 | inputs: 22 | - lane: null 23 | opts: 24 | description: | 25 | Fastlane lane to run 26 | $ fastlane [lane] 27 | is_required: true 28 | title: Fastlane lane 29 | - opts: 30 | description: |- 31 | Use this option if the fastlane directory is not in your repository's root. 32 | 33 | Working directory should be the parent directory of your Fastfile's directory. 34 | 35 | Example: 36 | 37 | * If Fastfile path: `./here/is/my/fastlane/Fastfile` 38 | * Then Fastfile's directory: `./here/is/my/fastlane` 39 | * So Working Directory should be: `./here/is/my` 40 | title: Working directory 41 | work_dir: $BITRISE_SOURCE_DIR 42 | -------------------------------------------------------------------------------- /steps/install-dotnetcore/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Install .NET Core 2 | summary: Installs the .NET Core SDK 3 | description: Installs the .NET Core SDK 4 | website: https://github.com/stefandevo/bitrise-dotnetcore-step 5 | source_code_url: https://github.com/stefandevo/bitrise-dotnetcore-step 6 | support_url: https://github.com/stefandevo/bitrise-dotnetcore-step/issues 7 | published_at: 2017-04-30T21:00:13.660280264+02:00 8 | source: 9 | git: https://github.com/stefandevo/bitrise-dotnetcore-step.git 10 | commit: cf27f88a0974c68fe97fef66758c5341b2432926 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: [] 14 | type_tags: 15 | - utility 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | inputs: 20 | - channel: null 21 | opts: 22 | description: | 23 | Specifies the source channel for the installation. Currently "production" does not exists. 24 | Leave empty to get latest "stable" (if this exists :-)) 25 | Possible known values are rel-1.0.0, rel-1.0.1, master (=daily version) 26 | is_expand: true 27 | is_required: false 28 | title: Channel 29 | - opts: 30 | description: "Specifies the version of CLI to install. You must specify the version 31 | as a 3-part version (for example, 1.0.0-13232). \nIf it isn't present, it will 32 | use the latest version.\n" 33 | is_expand: true 34 | is_required: false 35 | title: Version 36 | version: null 37 | -------------------------------------------------------------------------------- /steps/start-android-emulator/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully. 3 | description: Start Android emulator and wait till it's booted fully. 4 | website: https://github.com/bitrise-steplib/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-start-android-emulator/issues 7 | published_at: 2016-02-09T15:07:22.840862214+01:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: bb1e5a1e09a28b17f7d5dc795a2eac4e8281ed56 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: null 22 | opts: 23 | description: | 24 | Emulator to boot 25 | is_required: true 26 | title: Emulator to boot 27 | - opts: 28 | description: | 29 | Use this input to specify an emulator skin. 30 | Value example: 320x480 31 | title: Emulator skin 32 | skin: null 33 | - android_home: $ANDROID_HOME 34 | opts: 35 | description: Android sdk path 36 | is_required: true 37 | title: Android sdk path 38 | outputs: 39 | - BITRISE_EMULATOR_SERIAL: null 40 | opts: 41 | description: Booted emulator serial 42 | title: Emulator serial 43 | -------------------------------------------------------------------------------- /steps/web-translate-it/1.0.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Web Translate It 2 | summary: Install web translate it and perform a pull operation. 3 | description: This step runs a `wti pull` after installing the web translate it gem. 4 | You need an account on https://webtranslateit.com to be able to run this step. 5 | website: https://github.com/mAu888/steps-wti 6 | source_code_url: https://github.com/mAu888/steps-wti 7 | support_url: https://github.com/mAu888/steps-wti/issues 8 | published_at: 2016-05-12T17:56:32.545261148+02:00 9 | source: 10 | git: https://github.com/mAu888/steps-wti.git 11 | commit: c212a5cd7f27f9ce12220a78cdda569a6879df48 12 | host_os_tags: 13 | - osx-10.10 14 | type_tags: 15 | - utility 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | run_if: "" 20 | inputs: 21 | - opts: 22 | description: If no `.wti` file can be located in the $wti_working_directory (defaults 23 | to current working directory), the step creates a `.wti` file based on the $wti_api_key 24 | you provide. If neither a `.wti` file nor an $wti_api_key are given, the step 25 | fails. 26 | is_required: false 27 | summary: Find the API key on webtranslateit.com in your project settings. 28 | title: Web Translate It API Key 29 | wti_api_key: null 30 | - opts: 31 | is_required: false 32 | summary: The directory containing the `.wti` file. 33 | title: Working directory 34 | wti_working_directory: null 35 | -------------------------------------------------------------------------------- /steps/nunit-runner/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: NUnit runner 2 | summary: NUnit runner 3 | description: Executes a set of NUnit tests against your Xamarin solution file 4 | website: https://github.com/bitrise-steplib/steps-nunit-runner 5 | source_code_url: https://github.com/bitrise-steplib/steps-nunit-runner 6 | support_url: https://github.com/bitrise-steplib/steps-nunit-runner/issues 7 | published_at: 2016-05-18T17:47:19.474042161+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nunit-runner.git 10 | commit: f718ff34a0378bf6680a1b9ce629f7bc8827170b 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | - test 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin Solution 23 | is_required: true 24 | title: Path to Xamarin Solution 25 | xamarin_solution: $BITRISE_PROJECT_PATH 26 | - opts: 27 | description: | 28 | Xamarin project configuration 29 | is_required: true 30 | title: Xamarin project configuration 31 | xamarin_configuration: $BITRISE_XAMARIN_CONFIGURATION 32 | - opts: 33 | description: | 34 | Xamarin platform 35 | is_required: true 36 | title: Xamarin platform 37 | xamarin_platform: $BITRISE_XAMARIN_PLATFORM 38 | - nunit_options: null 39 | opts: 40 | description: | 41 | Additional option flags when running nunit3-console 42 | title: NUnit command options 43 | -------------------------------------------------------------------------------- /steps/nunit-runner/0.9.2/step.yml: -------------------------------------------------------------------------------- 1 | title: NUnit runner 2 | summary: NUnit runner 3 | description: Executes a set of NUnit tests against your Xamarin solution file 4 | website: https://github.com/bitrise-steplib/steps-nunit-runner 5 | source_code_url: https://github.com/bitrise-steplib/steps-nunit-runner 6 | support_url: https://github.com/bitrise-steplib/steps-nunit-runner/issues 7 | published_at: 2016-05-25T15:27:14.811776248+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nunit-runner.git 10 | commit: a01e7ef7b0a0a1e1c8635703101d1ad91669f53a 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | - test 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin Solution 23 | is_required: true 24 | title: Path to Xamarin Solution 25 | xamarin_solution: $BITRISE_PROJECT_PATH 26 | - opts: 27 | description: | 28 | Xamarin project configuration 29 | is_required: true 30 | title: Xamarin project configuration 31 | xamarin_configuration: $BITRISE_XAMARIN_CONFIGURATION 32 | - opts: 33 | description: | 34 | Xamarin platform 35 | is_required: true 36 | title: Xamarin platform 37 | xamarin_platform: $BITRISE_XAMARIN_PLATFORM 38 | - nunit_options: null 39 | opts: 40 | description: | 41 | Additional option flags when running nunit3-console 42 | title: NUnit command options 43 | -------------------------------------------------------------------------------- /steps/nunit-runner/0.9.3/step.yml: -------------------------------------------------------------------------------- 1 | title: NUnit runner 2 | summary: NUnit runner 3 | description: Executes a set of NUnit tests against your Xamarin solution file 4 | website: https://github.com/bitrise-steplib/steps-nunit-runner 5 | source_code_url: https://github.com/bitrise-steplib/steps-nunit-runner 6 | support_url: https://github.com/bitrise-steplib/steps-nunit-runner/issues 7 | published_at: 2016-09-07T12:59:16.946440062+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nunit-runner.git 10 | commit: 50be11b849c4a24e9a82ffb35b69d786bad5a2cc 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | - test 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin Solution 23 | is_required: true 24 | title: Path to Xamarin Solution 25 | xamarin_solution: $BITRISE_PROJECT_PATH 26 | - opts: 27 | description: | 28 | Xamarin project configuration 29 | is_required: true 30 | title: Xamarin project configuration 31 | xamarin_configuration: $BITRISE_XAMARIN_CONFIGURATION 32 | - opts: 33 | description: | 34 | Xamarin platform 35 | is_required: true 36 | title: Xamarin platform 37 | xamarin_platform: $BITRISE_XAMARIN_PLATFORM 38 | - nunit_options: null 39 | opts: 40 | description: | 41 | Additional option flags when running nunit3-console 42 | title: NUnit command options 43 | -------------------------------------------------------------------------------- /steps/codecov/1.1.3/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: |- 4 | Reduce technical debt with visualized test performance, 5 | faster code reviews and workflow enhancements. 6 | You can now upload your code coverage files to Codecov every time you kick off a build! 7 | website: https://github.com/bitrise-io/steps-codecov 8 | source_code_url: https://github.com/bitrise-io/steps-codecov 9 | support_url: https://github.com/bitrise-io/steps-codecov/issues 10 | published_at: 2016-07-19T14:43:50.145455121+02:00 11 | source: 12 | git: https://github.com/bitrise-io/steps-codecov.git 13 | commit: e245505a2069a8e9fce6e13d743d0930847808cd 14 | host_os_tags: 15 | - osx-10.10 16 | - ubuntu-14.04 17 | project_type_tags: 18 | - ios 19 | - android 20 | type_tags: 21 | - build 22 | - xcode 23 | - code_coverage 24 | is_requires_admin_user: false 25 | is_always_run: false 26 | is_skippable: true 27 | inputs: 28 | - CODECOV_TOKEN: null 29 | opts: 30 | description: | 31 | Codecov.io repository upload token 32 | is_required: true 33 | title: Codecov.io token 34 | - opts: 35 | description: |- 36 | Options to pass along to the Codecov uploader. 37 | You can use multiple options, separated by a space. 38 | Review all options at https://github.com/codecov/codecov-bash 39 | Example: `-F unittests -J '^Project'` 40 | title: Additional options for Codecov call 41 | other_options: null 42 | -------------------------------------------------------------------------------- /steps/xcode-project-info/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Xcode Project Info 2 | summary: Extracts version and build number to environment variables. 3 | description: |- 4 | This step will simply read version and build number from given `Info.plist` path, 5 | then export those to **APP_VERSION** and **APP_BUILD** environment variables. 6 | 7 | After this you can use these variables in other steps (ex. sending message on Slack). 8 | website: https://github.com/tadija/bitrise-step-xcode-project-info 9 | source_code_url: https://github.com/tadija/bitrise-step-xcode-project-info 10 | support_url: https://github.com/tadija/bitrise-step-xcode-project-info/issues 11 | published_at: 2016-04-21T17:49:32.149684094+02:00 12 | source: 13 | git: https://github.com/tadija/bitrise-step-xcode-project-info.git 14 | commit: cc682e9a0b4ec39b3868cbe059f0486efe681690 15 | host_os_tags: 16 | - osx-10.10 17 | project_type_tags: 18 | - ios 19 | type_tags: 20 | - xcode 21 | - versioning 22 | deps: 23 | check_only: 24 | - name: xcode 25 | is_requires_admin_user: true 26 | is_always_run: false 27 | is_skippable: false 28 | inputs: 29 | - info_plist_path: Info.plist 30 | opts: 31 | is_required: true 32 | summary: Path to project's Info.plist file. 33 | title: Info.plist file path 34 | outputs: 35 | - APP_VERSION: null 36 | opts: 37 | title: Version (CFBundleShortVersionString from Info.plist) 38 | - APP_BUILD: null 39 | opts: 40 | title: Build (CFBundleVersion from Info.plist) 41 | -------------------------------------------------------------------------------- /steps/xcode-project-info/1.0.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Xcode Project Info 2 | summary: Extracts version and build number to environment variables. 3 | description: |- 4 | This step will simply read version and build number from given `Info.plist` path, 5 | then export those to **APP_VERSION** and **APP_BUILD** environment variables. 6 | 7 | After this you can use these variables in other steps (ex. sending message on Slack). 8 | website: https://github.com/tadija/bitrise-step-xcode-project-info 9 | source_code_url: https://github.com/tadija/bitrise-step-xcode-project-info 10 | support_url: https://github.com/tadija/bitrise-step-xcode-project-info/issues 11 | published_at: 2016-04-25T13:15:37.659925407+02:00 12 | source: 13 | git: https://github.com/tadija/bitrise-step-xcode-project-info.git 14 | commit: 4793020329dccfc179be4cdd9384f4e974d5d0b4 15 | host_os_tags: 16 | - osx-10.10 17 | project_type_tags: 18 | - ios 19 | type_tags: 20 | - xcode 21 | - versioning 22 | deps: 23 | check_only: 24 | - name: xcode 25 | is_requires_admin_user: true 26 | is_always_run: false 27 | is_skippable: false 28 | inputs: 29 | - info_plist_path: Info.plist 30 | opts: 31 | is_required: true 32 | summary: Path to project's Info.plist file. 33 | title: Info.plist file path 34 | outputs: 35 | - APP_VERSION: null 36 | opts: 37 | title: Version (CFBundleShortVersionString from Info.plist) 38 | - APP_BUILD: null 39 | opts: 40 | title: Build (CFBundleVersion from Info.plist) 41 | -------------------------------------------------------------------------------- /steps/resign-ipa/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Re-sign IPA 2 | summary: Re-sign the selected IPA with new Certificate and Provisioning Profile. 3 | description: Re-sign the selected IPA with new Certificate and Provisioning Profile. 4 | website: https://github.com/bitrise-steplib/steps-resign-ipa 5 | source_code_url: https://github.com/bitrise-steplib/steps-resign-ipa 6 | support_url: https://github.com/bitrise-steplib/steps-resign-ipa/issues 7 | published_at: 2016-08-09T11:34:10.36640267+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-resign-ipa.git 10 | commit: 36c7a9ab6991b46328f312fafeac9f78568bf36c 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - ios 15 | - xamarin 16 | type_tags: 17 | - archive 18 | is_requires_admin_user: false 19 | is_always_run: false 20 | is_skippable: false 21 | inputs: 22 | - itunes_connect_team_id: null 23 | opts: 24 | description: | 25 | Specify your team ID for signing 26 | title: iTunes Connect Team ID 27 | - ipa_path: $BITRISE_IPA_PATH 28 | opts: 29 | description: | 30 | Path to the IPA what you would like to re-sign 31 | is_required: true 32 | title: IPA path 33 | - distribution_type: Appstore 34 | opts: 35 | description: "" 36 | is_required: true 37 | title: Distribution type 38 | value_options: 39 | - Appstore 40 | - InHouse 41 | - Development 42 | outputs: 43 | - BITRISE_RESIGNED_IPA_PATH: null 44 | opts: 45 | title: The re-signed IPA's path 46 | -------------------------------------------------------------------------------- /steps/codecov/1.1.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: |- 4 | Reduce technical debt with visualized test performance, 5 | faster code reviews and workflow enhancements. 6 | You can now upload your code coverage files to Codecov every time you kick off a build! 7 | website: https://github.com/bitrise-io/steps-codecov 8 | source_code_url: https://github.com/bitrise-io/steps-codecov 9 | support_url: https://github.com/bitrise-io/steps-codecov/issues 10 | published_at: 2016-07-15T17:40:04.615161953+02:00 11 | source: 12 | git: https://github.com/bitrise-io/steps-codecov.git 13 | commit: 3f61db9b48088e5a9d34a27a8021802cd331284f 14 | host_os_tags: 15 | - osx-10.10 16 | - ubuntu-14.04 17 | project_type_tags: 18 | - ios 19 | - android 20 | type_tags: 21 | - build 22 | - xcode 23 | - code_coverage 24 | is_requires_admin_user: false 25 | is_always_run: false 26 | is_skippable: true 27 | inputs: 28 | - CODECOV_TOKEN: null 29 | opts: 30 | description: | 31 | Codecov.io repository upload token 32 | is_required: true 33 | title: Codecov.io token 34 | - opts: 35 | description: |- 36 | Options to pass along to the Codecov uploader. 37 | You can use multiple options, separated by a space. 38 | Review all options at https://github.com/codecov/codecov-bash 39 | Example: `--codecov -F unittests -J '^Project'` 40 | title: Additional options for Codecov call 41 | other_options: null 42 | -------------------------------------------------------------------------------- /steps/generate-text-file/0.0.3/step.yml: -------------------------------------------------------------------------------- 1 | title: Generate Text File 2 | summary: Dynamically generate a text file 3 | description: |- 4 | This step lets you generate a dynamic text file which can use any environment 5 | variables. The path of the file will be made available as 6 | `$GENERATED_TEXT_FILE_PATH`. This script can e.g. be used to generate the Play 7 | Store's "What's New" file based on the Git commit message. 8 | website: https://github.com/nicolas-fricke/bitrise-step-generate-text-file 9 | source_code_url: https://github.com/nicolas-fricke/bitrise-step-generate-text-file 10 | support_url: https://github.com/nicolas-fricke/bitrise-step-generate-text-file/issues 11 | published_at: 2017-02-24T11:56:00.861387565Z 12 | source: 13 | git: https://github.com/nicolas-fricke/bitrise-step-generate-text-file.git 14 | commit: fa648ac4542f1465728d97a41d40f97704506cde 15 | host_os_tags: 16 | - osx-10.10 17 | type_tags: 18 | - utility 19 | is_requires_admin_user: true 20 | is_always_run: false 21 | is_skippable: false 22 | run_if: "" 23 | inputs: 24 | - file_name: generated_text_file.txt 25 | opts: 26 | is_required: true 27 | title: File Name 28 | - file_content: null 29 | opts: 30 | is_expand: true 31 | is_required: true 32 | summary: Add content for the text file here. You can also use all ENV variables. 33 | title: Content of the text file 34 | outputs: 35 | - GENERATED_TEXT_FILE_PATH: null 36 | opts: 37 | title: Path to the generated text file 38 | -------------------------------------------------------------------------------- /steps/codecov/1.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: |- 4 | Reduce technical debt with visualized test performance, 5 | faster code reviews and workflow enhancements. 6 | You can now upload your code coverage files to Codecov every time you kick off a build! 7 | website: https://github.com/bitrise-io/steps-codecov 8 | source_code_url: https://github.com/bitrise-io/steps-codecov 9 | support_url: https://github.com/bitrise-io/steps-codecov/issues 10 | published_at: 2016-07-11T17:24:49.447100846+02:00 11 | source: 12 | git: https://github.com/bitrise-io/steps-codecov.git 13 | commit: 69f404fbbd740092d667f7244f783e46a4272ea2 14 | host_os_tags: 15 | - osx-10.10 16 | - ubuntu-14.04 17 | project_type_tags: 18 | - ios 19 | - android 20 | type_tags: 21 | - build 22 | - xcode 23 | - code_coverage 24 | is_requires_admin_user: false 25 | is_always_run: false 26 | is_skippable: true 27 | inputs: 28 | - CODECOV_TOKEN: null 29 | opts: 30 | description: | 31 | Codecov.io repository upload token 32 | is_required: true 33 | title: Codecov.io token 34 | - opts: 35 | description: |- 36 | Options to pass along to the Codecov uploader. 37 | You can use multiple options, separated by a space. 38 | Review all options at https://github.com/codecov/codecov-bash 39 | Example: `--codecov -F unittests -J '^Project'` 40 | title: Additional options for Codecov call 41 | other_options: --codecov 42 | -------------------------------------------------------------------------------- /steps/codecov/1.1.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Codecov 2 | summary: Upload your code coverage files to Codecov.io 3 | description: |- 4 | Reduce technical debt with visualized test performance, 5 | faster code reviews and workflow enhancements. 6 | You can now upload your code coverage files to Codecov every time you kick off a build! 7 | website: https://github.com/bitrise-io/steps-codecov 8 | source_code_url: https://github.com/bitrise-io/steps-codecov 9 | support_url: https://github.com/bitrise-io/steps-codecov/issues 10 | published_at: 2016-07-13T12:03:19.662386335+02:00 11 | source: 12 | git: https://github.com/bitrise-io/steps-codecov.git 13 | commit: 344275f40f99507cb3b992ed6063467a2078f82f 14 | host_os_tags: 15 | - osx-10.10 16 | - ubuntu-14.04 17 | project_type_tags: 18 | - ios 19 | - android 20 | type_tags: 21 | - build 22 | - xcode 23 | - code_coverage 24 | is_requires_admin_user: false 25 | is_always_run: false 26 | is_skippable: true 27 | inputs: 28 | - CODECOV_TOKEN: null 29 | opts: 30 | description: | 31 | Codecov.io repository upload token 32 | is_required: true 33 | title: Codecov.io token 34 | - opts: 35 | description: |- 36 | Options to pass along to the Codecov uploader. 37 | You can use multiple options, separated by a space. 38 | Review all options at https://github.com/codecov/codecov-bash 39 | Example: `--codecov -F unittests -J '^Project'` 40 | title: Additional options for Codecov call 41 | other_options: --codecov 42 | -------------------------------------------------------------------------------- /steps/create-android-emulator/0.9.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Create Android emulator 2 | summary: Creates a new Android Virtual Device 3 | description: Creates a new Android Virtual Device. 4 | website: https://github.com/bitrise-steplib/steps-create-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-create-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-create-android-emulator/issues 7 | published_at: 2016-02-12T11:48:12.655133511+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-create-android-emulator.git 10 | commit: c963e2bea57dbf2a29df8239622bf213061cb76c 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - name: null 22 | opts: 23 | description: | 24 | Name of the new AVD. 25 | is_required: true 26 | title: Name of the new AVD 27 | - opts: 28 | description: | 29 | Target platform of the new AVD. 30 | is_required: true 31 | title: Target platform of the new AVD 32 | platform: android-19 33 | - abi: armeabi-v7a 34 | opts: 35 | description: | 36 | The ABI to use for the AVD. 37 | is_dont_change_value: true 38 | is_required: true 39 | title: The ABI to use for the AVD 40 | outputs: 41 | - BITRISE_EMULATOR_NAME: null 42 | opts: 43 | description: Name of the new AVD 44 | title: Name of the new AVD 45 | -------------------------------------------------------------------------------- /steps/hipchat/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 11 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /steps/raygun/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Raygun dSYM Upload 2 | summary: Upload your dSym to Raygun 3 | description: Upload your dSYM to Raygun 4 | website: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload 5 | source_code_url: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload 6 | support_url: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload/issues 7 | published_at: 2016-12-20T10:28:44.995871095-08:00 8 | source: 9 | git: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload.git 10 | commit: ba76c47b82475207c6db3e21354ecdfc3115ff5b 11 | host_os_tags: 12 | - osx-10.10 13 | type_tags: 14 | - deploy 15 | is_requires_admin_user: false 16 | is_always_run: false 17 | is_skippable: false 18 | inputs: 19 | - opts: 20 | description: | 21 | This is a Base64 encode of your username:password, you can run the following command in the terminal - 'echo -n 'username:password | openssl base64' to get it 22 | is_expand: true 23 | is_required: true 24 | title: API Key for Raygun. This is a Base64 encode of your username:password. 25 | raygun_api_key: null 26 | - app_id: null 27 | opts: 28 | description: | 29 | App ID from the Raygun portal 30 | is_expand: true 31 | is_required: true 32 | title: Raygun App ID 33 | - dsym_path: $BITRISE_DSYM_PATH 34 | opts: 35 | description: | 36 | Path to your dSYM file 37 | is_expand: true 38 | is_required: true 39 | title: Path to your dSYM file 40 | -------------------------------------------------------------------------------- /steps/start-android-emulator/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Start Android emulator 2 | summary: Start Android emulator and wait till it's booted fully. 3 | description: Start Android emulator and wait till it's booted fully. 4 | website: https://github.com/bitrise-steplib/steps-start-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-start-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-start-android-emulator/issues 7 | published_at: 2016-02-11T12:45:45.261569509+01:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-start-android-emulator.git 10 | commit: 2db42c117cda2336b8df4c285f02ebd79ebccebc 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - emulator_name: $BITRISE_EMULATOR_NAME 22 | opts: 23 | description: | 24 | Emulator AVD image name to boot. 25 | is_required: true 26 | title: Emulator to boot 27 | - opts: 28 | description: | 29 | Use this input to specify an emulator skin. 30 | Value example: `320x480`. 31 | title: Emulator skin 32 | skin: null 33 | - android_home: $ANDROID_HOME 34 | opts: 35 | description: Android sdk path 36 | is_required: true 37 | title: Android sdk path 38 | outputs: 39 | - BITRISE_EMULATOR_SERIAL: null 40 | opts: 41 | description: Booted emulator serial 42 | title: Emulator serial 43 | -------------------------------------------------------------------------------- /steps/gulp/0.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Run gulp command 2 | summary: Runs `gulp` with the given command and args. 3 | description: Runs `gulp` with the given command and args. 4 | website: https://github.com/nhammond101/steps-gulp 5 | source_code_url: https://github.com/nhammond101/steps-gulp 6 | support_url: https://github.com/nhammond101/steps-gulp/issues 7 | published_at: 2016-11-23T15:40:06.868356835Z 8 | source: 9 | git: https://github.com/nhammond101/steps-gulp.git 10 | commit: cd8af8700492d7cd6bd8c0c77c43ed6a688e0aed 11 | type_tags: 12 | - gulp 13 | deps: 14 | brew: 15 | - name: npm 16 | inputs: 17 | - opts: 18 | description: | 19 | Working directory of the step. 20 | You can leave it empty to not change it. 21 | title: Working directory 22 | workdir: $BITRISE_SOURCE_DIR 23 | - command: null 24 | opts: 25 | description: Specify the command to run with `gulp`. For example `install`, or 26 | `test`. 27 | title: The `gulp` command to run 28 | - args: null 29 | opts: 30 | description: |- 31 | Arguments are added to the `gulp` command. You can specify multiple arguments, separated 32 | by a space character. For example `-dd -ll` 33 | title: Arguments for running `gulp` commands 34 | - is_debug: "no" 35 | opts: 36 | description: | 37 | If debug=yes the step will print debug infos about 38 | the working dir, tmp file path, exit code, etc. 39 | title: Debug? 40 | value_options: 41 | - "no" 42 | - "yes" 43 | -------------------------------------------------------------------------------- /steps/gulp/0.1.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Run gulp command 2 | summary: Runs `gulp` with the given command and args. 3 | description: Runs `gulp` with the given command and args. 4 | website: https://github.com/nhammond101/steps-gulp 5 | source_code_url: https://github.com/nhammond101/steps-gulp 6 | support_url: https://github.com/nhammond101/steps-gulp/issues 7 | published_at: 2016-12-02T12:12:33.124897245Z 8 | source: 9 | git: https://github.com/nhammond101/steps-gulp.git 10 | commit: 3fc1b99594544775412df580ac034ea957756b2f 11 | type_tags: 12 | - utility 13 | deps: 14 | brew: 15 | - name: npm 16 | inputs: 17 | - opts: 18 | description: | 19 | Working directory of the step. 20 | You can leave it empty to not change it. 21 | title: Working directory 22 | workdir: $BITRISE_SOURCE_DIR 23 | - command: null 24 | opts: 25 | description: Specify the command to run with `gulp`. For example `install`, or 26 | `test`. 27 | title: The `gulp` command to run 28 | - args: null 29 | opts: 30 | description: |- 31 | Arguments are added to the `gulp` command. You can specify multiple arguments, separated 32 | by a space character. For example `-dd -ll` 33 | title: Arguments for running `gulp` commands 34 | - is_debug: "no" 35 | opts: 36 | description: | 37 | If debug=yes the step will print debug infos about 38 | the working dir, tmp file path, exit code, etc. 39 | title: Debug? 40 | value_options: 41 | - "no" 42 | - "yes" 43 | -------------------------------------------------------------------------------- /steps/hipchat-v2/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 11 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /steps/yarn/0.0.3/step.yml: -------------------------------------------------------------------------------- 1 | title: Run yarn command 2 | summary: Runs `yarn` with the given command and args. 3 | description: Runs `yarn` with the given command and args. 4 | website: https://github.com/jonoirwinrsa/steps-yarn 5 | source_code_url: https://github.com/jonoirwinrsa/steps-yarn 6 | support_url: https://github.com/jonoirwinrsa/steps-yarn/issues 7 | published_at: 2016-10-20T15:55:58.953051412+02:00 8 | source: 9 | git: https://github.com/jonoirwinrsa/steps-yarn.git 10 | commit: 3fbb032b55af70bdd35ff37733e447692a14ef27 11 | host_os_tags: 12 | - osx-10.11 13 | project_type_tags: 14 | - ios 15 | - android 16 | type_tags: 17 | - react-native 18 | - npm 19 | - yarn 20 | deps: 21 | brew: 22 | - name: node 23 | - name: yarn 24 | is_always_run: false 25 | is_skippable: false 26 | inputs: 27 | - opts: 28 | description: | 29 | Working directory of the step. 30 | You can leave it empty to not change it. 31 | title: Working directory 32 | workdir: $BITRISE_SOURCE_DIR 33 | - command: null 34 | opts: 35 | description: | 36 | Specify the command to run with `yarn`. For example `add`. 37 | Leave it blank to install dependencies. 38 | is_required: false 39 | title: The `yarn` command to run 40 | - args: null 41 | opts: 42 | description: |- 43 | Arguments are added to the `yarn` command. You can specify multiple arguments, separated 44 | by a space character. For example `global` 45 | title: Arguments for running `yarn` commands 46 | -------------------------------------------------------------------------------- /steps/generate-text-file/0.0.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Generate Text File 2 | summary: Dynamically generate a text file 3 | description: |- 4 | This step lets you generate a dynamic text file which can use any environment 5 | variables. The path of the file will be made available as 6 | `$GENERATED_TEXT_FILE_PATH`. This script can e.g. be used to generate the Play 7 | Store's "What's New" file based on the Git commit message. 8 | website: https://github.com/nicolas-fricke/bitrise-step-generate-text-file 9 | source_code_url: https://github.com/nicolas-fricke/bitrise-step-generate-text-file 10 | support_url: https://github.com/nicolas-fricke/bitrise-step-generate-text-file/issues 11 | published_at: 2017-02-10T17:46:02.07475167+01:00 12 | source: 13 | git: https://github.com/nicolas-fricke/bitrise-step-generate-text-file.git 14 | commit: ab3b6500401b4a5bbe06c3b9aa6336d9cd13f702 15 | host_os_tags: 16 | - osx-10.10 17 | type_tags: 18 | - file 19 | - utils 20 | is_requires_admin_user: true 21 | is_always_run: false 22 | is_skippable: false 23 | run_if: "" 24 | inputs: 25 | - file_name: generated_text_file.txt 26 | opts: 27 | is_required: true 28 | title: File Name 29 | - file_content: null 30 | opts: 31 | is_expand: true 32 | is_required: true 33 | summary: Add content for the text file here. You can also use all ENV variables. 34 | title: Content of the text file 35 | outputs: 36 | - GENERATED_TEXT_FILE_PATH: null 37 | opts: 38 | title: Path to the generated text file 39 | -------------------------------------------------------------------------------- /steps/nunit-runner/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: NUnit runner 2 | summary: NUnit runner 3 | description: Executes a set of NUnit tests against your Xamarin solution file 4 | website: https://github.com/bitrise-steplib/steps-nunit-runner 5 | source_code_url: https://github.com/bitrise-steplib/steps-nunit-runner 6 | support_url: https://github.com/bitrise-steplib/steps-nunit-runner/issues 7 | published_at: 2016-02-18T12:06:06.81991209+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nunit-runner.git 10 | commit: 7e40db7b6bfe38dd2489d02a42746de8c9d10311 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | - test 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | inputs: 20 | - opts: 21 | description: | 22 | Path to Xamarin Solution 23 | is_required: true 24 | title: Path to Xamarin Solution 25 | xamarin_solution: $BITRISE_PROJECT_PATH 26 | - opts: 27 | description: | 28 | Xamarin project configuration 29 | is_required: true 30 | title: Xamarin project configuration 31 | xamarin_configuration: $BITRISE_XAMARIN_CONFIGURATION 32 | - opts: 33 | description: | 34 | Xamarin platform 35 | is_required: true 36 | title: Xamarin platform 37 | xamarin_platform: $BITRISE_XAMARIN_PLATFORM 38 | - nunit_options: null 39 | opts: 40 | description: | 41 | Additional option flags when running nunit3-console 42 | is_required: false 43 | title: NUnit command options 44 | -------------------------------------------------------------------------------- /steps/tslint/0.0.4/step.yml: -------------------------------------------------------------------------------- 1 | title: Run tslint command 2 | summary: Runs `tslint` with the given args. 3 | description: Runs `tslint` with the given args. 4 | website: https://github.com/ibratoev/steps-tslint 5 | source_code_url: https://github.com/ibratoev/steps-tslint 6 | support_url: https://github.com/ibratoev/steps-tslint/issues 7 | published_at: 2017-03-29T18:28:08.540610584+03:00 8 | source: 9 | git: https://github.com/ibratoev/steps-tslint.git 10 | commit: 8f24c81dfb3d65b4129f1d44591eca7af13d44c0 11 | host_os_tags: 12 | - osx 13 | - ubuntu 14 | type_tags: 15 | - utility 16 | is_requires_admin_user: false 17 | is_always_run: false 18 | is_skippable: false 19 | inputs: 20 | - opts: 21 | description: | 22 | Working directory of the step. 23 | You can leave it empty to not change it. 24 | title: Working directory 25 | workdir: $BITRISE_SOURCE_DIR 26 | - opts: 27 | description: | 28 | The path to the `tslint` executable. 29 | title: '`tslint` executable path' 30 | path: tslint 31 | - opts: 32 | description: | 33 | The version of `tslint` to install if not available. 34 | title: Version 35 | version: latest 36 | - opts: 37 | description: | 38 | The TypeScript version to install if not available. 39 | title: TypeScript version 40 | typescript_version: latest 41 | - args: '"**/*.ts" -e "**/node_modules/**"' 42 | opts: 43 | description: Arguments are added to the `tslint` command. 44 | title: Arguments for running `tslint` 45 | -------------------------------------------------------------------------------- /steps/bower/0.1.2/step.yml: -------------------------------------------------------------------------------- 1 | title: Run bower command 2 | summary: Runs `bower` with the given command and args. 3 | description: Runs `bower` with the given command and args. 4 | website: https://github.com/nhammond101/steps-bower 5 | source_code_url: https://github.com/nhammond101/steps-bower 6 | support_url: https://github.com/nhammond101/steps-bower/issues 7 | published_at: 2016-11-23T12:58:05.247749879Z 8 | source: 9 | git: https://github.com/nhammond101/steps-bower.git 10 | commit: b3cdda75d4541afacc08826a328c285d5e7225f1 11 | type_tags: 12 | - bower 13 | deps: 14 | brew: 15 | - name: npm 16 | inputs: 17 | - opts: 18 | description: | 19 | Working directory of the step. 20 | You can leave it empty to not change it. 21 | title: Working directory 22 | workdir: $BITRISE_SOURCE_DIR 23 | - command: null 24 | opts: 25 | description: Specify the command to run with `bower`. For example `install`, or 26 | `test`. 27 | title: The `bower` command to run 28 | - args: null 29 | opts: 30 | description: |- 31 | Arguments are added to the `bower` command. You can specify multiple arguments, separated 32 | by a space character. For example `-dd -ll` 33 | title: Arguments for running `bower` commands 34 | - is_debug: "no" 35 | opts: 36 | description: | 37 | If debug=yes the step will print debug infos about 38 | the working dir, tmp file path, exit code, etc. 39 | title: Debug? 40 | value_options: 41 | - "no" 42 | - "yes" 43 | -------------------------------------------------------------------------------- /steps/giphy/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 13 | 14 | 16 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /steps/nuget-restore/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2016-10-20T12:06:19.747136795+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: 2100d8c652f428f8acb2acfe1ba88712158eb76b 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | toolkit: 16 | go: 17 | package_name: github.com/bitrise-io/steps-nuget-restore 18 | deps: 19 | brew: 20 | - name: go 21 | apt_get: 22 | - name: golang 23 | bin_name: go 24 | is_requires_admin_user: true 25 | is_always_run: false 26 | is_skippable: false 27 | inputs: 28 | - opts: 29 | description: | 30 | Path to Xamarin solution 31 | is_required: true 32 | title: Path to Xamarin solution 33 | xamarin_solution: $BITRISE_PROJECT_PATH 34 | - nuget_version: null 35 | opts: 36 | description: | 37 | The default NuGet restore step uses the NuGet version that ships with Xamarin. 38 | 39 | Specify this input if you would like to use a custom NuGet version. 40 | You can find all the available NuGet distribution here: https://dist.nuget.org/index.html. 41 | 42 | Format examples: 43 | 44 | - 2.8.6 45 | - latest 46 | title: NuGet version 47 | -------------------------------------------------------------------------------- /steps/nuget-restore/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2016-10-24T17:42:25.336053388+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: 0631ab3856c163bbd4fe4f4da69d80dd5e7ab9a6 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | toolkit: 16 | go: 17 | package_name: github.com/bitrise-io/steps-nuget-restore 18 | deps: 19 | brew: 20 | - name: go 21 | apt_get: 22 | - name: golang 23 | bin_name: go 24 | is_requires_admin_user: true 25 | is_always_run: false 26 | is_skippable: false 27 | inputs: 28 | - opts: 29 | description: | 30 | Path to Xamarin solution 31 | is_required: true 32 | title: Path to Xamarin solution 33 | xamarin_solution: $BITRISE_PROJECT_PATH 34 | - nuget_version: null 35 | opts: 36 | description: | 37 | The default NuGet restore step uses the NuGet version that ships with Xamarin. 38 | 39 | Specify this input if you would like to use a custom NuGet version. 40 | You can find all the available NuGet distribution here: https://dist.nuget.org/index.html. 41 | 42 | Format examples: 43 | 44 | - 2.8.6 45 | - latest 46 | title: NuGet version 47 | -------------------------------------------------------------------------------- /steps/nuget-restore/1.0.2/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2016-12-01T16:29:38.500818137+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: 93a6c8132dd6fee44d9e707ee697bdb7b314788a 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | toolkit: 16 | go: 17 | package_name: github.com/bitrise-io/steps-nuget-restore 18 | deps: 19 | brew: 20 | - name: go 21 | apt_get: 22 | - name: golang 23 | bin_name: go 24 | is_requires_admin_user: true 25 | is_always_run: false 26 | is_skippable: false 27 | inputs: 28 | - opts: 29 | description: | 30 | Path to Xamarin solution 31 | is_required: true 32 | title: Path to Xamarin solution 33 | xamarin_solution: $BITRISE_PROJECT_PATH 34 | - nuget_version: null 35 | opts: 36 | description: | 37 | The default NuGet restore step uses the NuGet version that ships with Xamarin. 38 | 39 | Specify this input if you would like to use a custom NuGet version. 40 | You can find all the available NuGet distribution here: https://dist.nuget.org/index.html. 41 | 42 | Format examples: 43 | 44 | - 2.8.6 45 | - latest 46 | title: NuGet version 47 | -------------------------------------------------------------------------------- /steps/create-android-emulator/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Create Android emulator 2 | summary: Creates a new Android Virtual Device 3 | description: Creates a new Android Virtual Device. 4 | website: https://github.com/bitrise-steplib/steps-create-android-emulator 5 | source_code_url: https://github.com/bitrise-steplib/steps-create-android-emulator 6 | support_url: https://github.com/bitrise-steplib/steps-create-android-emulator/issues 7 | published_at: 2016-02-11T11:45:48.560557859+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-create-android-emulator.git 10 | commit: fa86cca7a9810f52f20eac178018dae463612f90 11 | host_os_tags: 12 | - ubuntu 13 | project_type_tags: 14 | - android 15 | type_tags: 16 | - emulator 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - name: null 22 | opts: 23 | description: | 24 | Name of the new AVD. 25 | is_required: true 26 | title: Name of the new AVD 27 | - opts: 28 | description: | 29 | Target platform of the new AVD. 30 | 31 | Example: android-19 32 | is_required: true 33 | title: Target platform of the new AVD 34 | platform: null 35 | - abi: armeabi-v7a 36 | opts: 37 | description: | 38 | The ABI to use for the AVD. 39 | is_dont_change_value: true 40 | is_required: true 41 | title: The ABI to use for the AVD 42 | outputs: 43 | - BITRISE_EMULATOR_NAME: null 44 | opts: 45 | description: Name of the new AVD 46 | title: Name of the new AVD 47 | -------------------------------------------------------------------------------- /steps/raygun/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Raygun dSYM Upload 2 | summary: Upload your dSym to Raygun 3 | description: Upload your dSYM to Xamarin.Insights 4 | website: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload 5 | source_code_url: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload 6 | support_url: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload/issues 7 | published_at: 2016-12-20T10:13:01.863060192-08:00 8 | source: 9 | git: https://github.com/jamesmontemagno/bitrise-step-raygun-dsym-upload.git 10 | commit: 5a08676e33e9ff004b854503dd9a5326f5c94440 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | - ios 16 | - mac 17 | is_requires_admin_user: false 18 | is_always_run: false 19 | is_skippable: false 20 | inputs: 21 | - opts: 22 | description: | 23 | This is a Base64 encode of your username:password, you can run the following command in the terminal - 'echo -n 'username:password | openssl base64' to get it 24 | is_expand: true 25 | is_required: true 26 | title: API Key for Raygun. This is a Base64 encode of your username:password. 27 | raygun_api_key: null 28 | - app_id: null 29 | opts: 30 | description: | 31 | App ID from the Raygun portal 32 | is_expand: true 33 | is_required: true 34 | title: Raygun App ID 35 | - dsym_path: $BITRISE_DSYM_PATH 36 | opts: 37 | description: | 38 | Path to your dSYM file 39 | is_expand: true 40 | is_required: true 41 | title: Path to your dSYM file 42 | -------------------------------------------------------------------------------- /steps/web-translate-it/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Web Translate It 2 | summary: Install web translate it and perform a pull operation. 3 | description: This step runs a `wti pull` after installing the web translate it gem. 4 | You need an account on https://webtranslateit.com to be able to run this step. 5 | website: https://github.com/mAu888/steps-wti 6 | source_code_url: https://github.com/mAu888/steps-wti 7 | support_url: https://github.com/mAu888/steps-wti/issues 8 | published_at: 2016-05-04T16:15:43.644180786+02:00 9 | source: 10 | git: https://github.com/mAu888/steps-wti.git 11 | commit: f020a7295a9b8462a9511cf220311ce0a975618b 12 | host_os_tags: 13 | - osx-10.10 14 | project_type_tags: 15 | - ios 16 | type_tags: 17 | - translation 18 | - localization 19 | - xcode 20 | is_requires_admin_user: false 21 | is_always_run: false 22 | is_skippable: false 23 | run_if: "" 24 | inputs: 25 | - opts: 26 | description: If no `.wti` file can be located in the $wti_working_directory (defaults 27 | to current working directory), the step creates a `.wti` file based on the $wti_api_key 28 | you provide. If neither a `.wti` file nor an $wti_api_key are given, the step 29 | fails. 30 | is_required: false 31 | summary: Find the API key on webtranslateit.com in your project settings. 32 | title: Web Translate It API Key 33 | wti_api_key: null 34 | - opts: 35 | is_required: false 36 | summary: The directory containing the `.wti` file. 37 | title: Working directory 38 | wti_working_directory: null 39 | -------------------------------------------------------------------------------- /steps/set-android-manifest-package-name/0.9.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Android Manifest Package Name 2 | summary: Sets the specified package name in the AndroidManifest.xml 3 | description: "This step allows to change the initial package name specified in AndroidManifest.xml\nThis 4 | is mainly required for the android app created with Xamarin. \nXamarin doesn't provide 5 | an easy wayt to change package name depending on the configuration. So this step 6 | may be used to do so." 7 | website: https://github.com/Memorado/bitrise-android-package-name-step 8 | source_code_url: https://github.com/Memorado/bitrise-android-package-name-step 9 | support_url: https://github.com/Memorado/bitrise-android-package-name-step/issues 10 | published_at: 2016-03-31T11:12:52.857027332+02:00 11 | source: 12 | git: https://github.com/Memorado/bitrise-android-package-name-step.git 13 | commit: 810ce06a3098a772d9091161c9ac8934729ccc45 14 | host_os_tags: 15 | - osx-10.10 16 | project_type_tags: 17 | - android 18 | - xamarin 19 | - cordova 20 | - ionic 21 | - react-native 22 | type_tags: 23 | - utility 24 | run_if: .IsCI 25 | inputs: 26 | - manifest_file: $BITRISE_ANDROID_MANIFEST_PATH 27 | opts: 28 | description: | 29 | Path to the given project's AndroidManifest.xml file. 30 | is_required: true 31 | summary: "" 32 | title: AndroidManifest.xml file path 33 | - opts: 34 | is_required: true 35 | summary: Set the package attribute in the AndroidManifest.xml to a specified value 36 | title: Package Name 37 | package_name: null 38 | -------------------------------------------------------------------------------- /steps/amazon-s3-upload/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 11 | 13 | 14 | 15 | 17 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /steps/giphy/0.1.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Gifs with Giphy 2 | summary: Spice up your Bitrise.io logs with a random Gif from Giphy (saved into $GIF_URL) 3 | description: | 4 | Spice up your Bitrise.io logs with a random Gif from Giphy 5 | 6 | This script will add a `GIF_URL` variable to your build than you can use in the next steps. 7 | Wanna send a Gif with the Slack step? Simply add `$GIF_URL` somewhere in your Gif message ;) 8 | website: https://github.com/almouro/bitrise-giphy-step 9 | source_code_url: https://github.com/almouro/bitrise-giphy-step 10 | support_url: https://github.com/almouro/bitrise-giphy-step/issues 11 | published_at: 2016-10-17T20:09:38.225617462+02:00 12 | source: 13 | git: https://github.com/Almouro/bitrise-giphy-step.git 14 | commit: f03d7bcf9451b32a199c7f30cdd6736bad8774e2 15 | host_os_tags: 16 | - osx 17 | - ubuntu 18 | type_tags: 19 | - utility 20 | is_requires_admin_user: false 21 | is_always_run: true 22 | is_skippable: true 23 | inputs: 24 | - gif_words: such wow,awesome,shipit,yes,panda,cat,hell yeah,applaud,lgtm,surprise,suprise 25 | motherfucker,yeah bitches,high five,legendary,lil bub 26 | opts: 27 | description: | 28 | The step randomly select a gif for one the words you entered. 29 | 30 | You should enter a comma separated list of value. 31 | The default is "such wow,awesome,shipit,yes,panda,cat,hell yeah,applaud,lgtm,surprise,suprise motherfucker,yeah bitches,high five,legendary,lil bub" 32 | is_expand: false 33 | is_required: true 34 | title: Random Gif words 35 | -------------------------------------------------------------------------------- /steps/giphy/0.1.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Gifs with Giphy 2 | summary: Spice up your Bitrise.io logs with a random Gif from Giphy (saved into $GIF_URL) 3 | description: | 4 | Spice up your Bitrise.io logs with a random Gif from Giphy 5 | 6 | This script will add a `GIF_URL` variable to your build than you can use in the next steps. 7 | Wanna send a Gif with the Slack step? Simply add `$GIF_URL` somewhere in your Gif message ;) 8 | website: https://github.com/almouro/bitrise-giphy-step 9 | source_code_url: https://github.com/almouro/bitrise-giphy-step 10 | support_url: https://github.com/almouro/bitrise-giphy-step/issues 11 | published_at: 2016-11-11T12:33:28.486415826+01:00 12 | source: 13 | git: https://github.com/Almouro/bitrise-giphy-step.git 14 | commit: 0492814eef11db70ed8c0dc98eeefce2bf751afd 15 | host_os_tags: 16 | - osx 17 | - ubuntu 18 | type_tags: 19 | - utility 20 | is_requires_admin_user: false 21 | is_always_run: true 22 | is_skippable: true 23 | inputs: 24 | - gif_words: such wow,awesome,shipit,yes,panda,cat,hell yeah,applaud,lgtm,surprise,suprise 25 | motherfucker,yeah bitches,high five,legendary,lil bub 26 | opts: 27 | description: | 28 | The step randomly select a gif for one the words you entered. 29 | 30 | You should enter a comma separated list of value. 31 | The default is "such wow,awesome,shipit,yes,panda,cat,hell yeah,applaud,lgtm,surprise,suprise motherfucker,yeah bitches,high five,legendary,lil bub" 32 | is_expand: false 33 | is_required: true 34 | title: Random Gif words 35 | -------------------------------------------------------------------------------- /steps/ruby-script/2.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Ruby Script runner with optional Gemfile support 2 | summary: Install the gems you need, run the script you'd like. 3 | description: Run a Ruby script with optional Gemfile. 4 | website: https://github.com/bitrise-io/steps-ruby-script 5 | source_code_url: https://github.com/bitrise-io/steps-ruby-script 6 | support_url: https://github.com/bitrise-io/steps-ruby-script/issues 7 | published_at: 2015-09-08T16:48:19.649281442+02:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-ruby-script.git 10 | commit: 8400225b2596f186975eff83f8ae02430f0119cf 11 | host_os_tags: 12 | - osx-10.9 13 | - osx-10.10 14 | type_tags: 15 | - script 16 | - ruby 17 | - runner 18 | - glue 19 | is_requires_admin_user: true 20 | is_always_run: false 21 | is_skippable: false 22 | run_if: "" 23 | inputs: 24 | - gemfile_content: "" 25 | opts: 26 | description: "" 27 | is_dont_change_value: false 28 | is_expand: false 29 | is_required: false 30 | summary: "" 31 | title: Gemfile's content 32 | - opts: 33 | description: "" 34 | is_dont_change_value: false 35 | is_expand: false 36 | is_required: true 37 | summary: "" 38 | title: The Ruby script 39 | ruby_content: "" 40 | - opts: 41 | description: "" 42 | is_dont_change_value: false 43 | is_expand: true 44 | is_required: false 45 | summary: |- 46 | Specify a directory - this will be set as the 47 | current working directory for the script 48 | title: Run in directory 49 | script_run_dir: "" 50 | -------------------------------------------------------------------------------- /steps/ruby-script/2.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Ruby Script runner with optional Gemfile support 2 | summary: Install the gems you need, run the script you'd like. 3 | description: Run a Ruby script with optional Gemfile. 4 | website: https://github.com/bitrise-io/steps-ruby-script 5 | source_code_url: https://github.com/bitrise-io/steps-ruby-script 6 | support_url: https://github.com/bitrise-io/steps-ruby-script/issues 7 | published_at: 2015-09-12T13:35:16.999682597+02:00 8 | source: 9 | git: https://github.com/bitrise-io/steps-ruby-script.git 10 | commit: a501c5edd97902b1c53ec287680255bc6fa70e01 11 | host_os_tags: 12 | - osx-10.9 13 | - osx-10.10 14 | type_tags: 15 | - script 16 | - ruby 17 | - runner 18 | - glue 19 | is_requires_admin_user: true 20 | is_always_run: false 21 | is_skippable: false 22 | run_if: "" 23 | inputs: 24 | - gemfile_content: "" 25 | opts: 26 | description: "" 27 | is_dont_change_value: false 28 | is_expand: false 29 | is_required: false 30 | summary: "" 31 | title: Gemfile's content 32 | - opts: 33 | description: "" 34 | is_dont_change_value: false 35 | is_expand: false 36 | is_required: true 37 | summary: "" 38 | title: The Ruby script 39 | ruby_content: "" 40 | - opts: 41 | description: "" 42 | is_dont_change_value: false 43 | is_expand: true 44 | is_required: false 45 | summary: |- 46 | Specify a directory - this will be set as the 47 | current working directory for the script 48 | title: Run in directory 49 | script_run_dir: "" 50 | -------------------------------------------------------------------------------- /steps/nuget-restore/1.0.3/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2016-12-05T15:28:12.519135934+01:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: 853abb4810ae9f9245d187ae5468f3dff846c226 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | type_tags: 16 | - dependency 17 | toolkit: 18 | go: 19 | package_name: github.com/bitrise-io/steps-nuget-restore 20 | deps: 21 | brew: 22 | - name: go 23 | apt_get: 24 | - name: golang 25 | bin_name: go 26 | is_requires_admin_user: true 27 | is_always_run: false 28 | is_skippable: false 29 | inputs: 30 | - opts: 31 | description: | 32 | Path to Xamarin solution 33 | is_required: true 34 | title: Path to Xamarin solution 35 | xamarin_solution: $BITRISE_PROJECT_PATH 36 | - nuget_version: null 37 | opts: 38 | description: | 39 | The default NuGet restore step uses the NuGet version that ships with Xamarin. 40 | 41 | Specify this input if you would like to use a custom NuGet version. 42 | You can find all the available NuGet distribution here: https://dist.nuget.org/index.html. 43 | 44 | Format examples: 45 | 46 | - 2.8.6 47 | - latest 48 | title: NuGet version 49 | -------------------------------------------------------------------------------- /steps/nuget-restore/1.0.4/step.yml: -------------------------------------------------------------------------------- 1 | title: NuGet restore 2 | summary: NuGet restore step 3 | description: NuGet restore step 4 | website: https://github.com/bitrise-steplib/steps-nuget-restore 5 | source_code_url: https://github.com/bitrise-steplib/steps-nuget-restore 6 | support_url: https://github.com/bitrise-steplib/steps-nuget-restore/issues 7 | published_at: 2017-05-22T12:12:42.083299505+02:00 8 | source: 9 | git: https://github.com/bitrise-steplib/steps-nuget-restore.git 10 | commit: d50824ae9e0a5f32f6b8b228ac5ddf359c68e6ba 11 | host_os_tags: 12 | - osx-10.10 13 | project_type_tags: 14 | - xamarin 15 | type_tags: 16 | - dependency 17 | toolkit: 18 | go: 19 | package_name: github.com/bitrise-io/steps-nuget-restore 20 | deps: 21 | brew: 22 | - name: go 23 | apt_get: 24 | - name: golang 25 | bin_name: go 26 | is_requires_admin_user: true 27 | is_always_run: false 28 | is_skippable: false 29 | inputs: 30 | - opts: 31 | description: | 32 | Path to Xamarin solution 33 | is_required: true 34 | title: Path to Xamarin solution 35 | xamarin_solution: $BITRISE_PROJECT_PATH 36 | - nuget_version: latest 37 | opts: 38 | description: | 39 | The default NuGet restore step uses the NuGet version that ships with Xamarin. 40 | 41 | Specify this input if you would like to use a custom NuGet version. 42 | You can find all the available NuGet distribution here: https://dist.nuget.org/index.html. 43 | 44 | Format examples: 45 | 46 | - 2.8.6 47 | - latest 48 | title: NuGet version 49 | -------------------------------------------------------------------------------- /steps/set-xcode-build-number/1.0.1/step.yml: -------------------------------------------------------------------------------- 1 | title: Set Xcode Project Build Number 2 | summary: |- 3 | Sets the value of Bundle version in the specified Info.plist file. A great 4 | way to keep track of version when submitting bug reports. 5 | description: Set the value of Bundle version in the project's Info.plist file to the 6 | specified version number. 7 | website: https://github.com/bitrise-io/set-xcode-build-number 8 | source_code_url: https://github.com/bitrise-io/set-xcode-build-number 9 | support_url: https://github.com/bitrise-io/set-xcode-build-number/issues 10 | published_at: 2015-10-11T10:35:26.080982811+02:00 11 | source: 12 | git: https://github.com/bitrise-io/steps-set-xcode-build-number.git 13 | commit: 809e1498d23cafce22b8680a67274149b8809051 14 | host_os_tags: 15 | - osx-10.10 16 | project_type_tags: 17 | - ios 18 | type_tags: 19 | - build 20 | - xcode 21 | dependencies: 22 | - manager: _ 23 | name: xcode 24 | is_requires_admin_user: false 25 | is_always_run: false 26 | is_skippable: false 27 | run_if: .IsCI 28 | inputs: 29 | - opts: 30 | description: | 31 | Path to the given project's Info.plist file. 32 | is_dont_change_value: false 33 | is_expand: true 34 | is_required: true 35 | summary: "" 36 | title: Info.plist file path 37 | plist_path: null 38 | - build_version: $BITRISE_BUILD_NUMBER 39 | opts: 40 | is_dont_change_value: false 41 | is_expand: true 42 | is_required: true 43 | summary: Set the Build Number / Bundle Version to this value. 44 | title: Build Number 45 | -------------------------------------------------------------------------------- /steps/set-xcode-build-number/1.0.0/step.yml: -------------------------------------------------------------------------------- 1 | title: Set Xcode Project Build Number 2 | summary: |- 3 | Sets the value of Bundle version in the specified Info.plist file. A great 4 | way to keep track of version when submitting bug reports. 5 | description: |- 6 | Set the value of Bundle version in the project's Info.plist file to the 7 | specified version number. 8 | website: https://github.com/bitrise-io/set-xcode-build-number 9 | source_code_url: https://github.com/bitrise-io/set-xcode-build-number 10 | support_url: https://github.com/bitrise-io/set-xcode-build-number/issues 11 | published_at: 2015-09-23T18:07:16.497575934+02:00 12 | source: 13 | git: https://github.com/bitrise-io/steps-set-xcode-build-number.git 14 | commit: 222a32f19a63ddeace84a033fe51f3c9194d0804 15 | host_os_tags: 16 | - osx-10.10 17 | project_type_tags: 18 | - ios 19 | type_tags: 20 | - build 21 | - xcode 22 | dependencies: 23 | - manager: _ 24 | name: xcode 25 | is_requires_admin_user: false 26 | is_always_run: false 27 | is_skippable: false 28 | run_if: .IsCI 29 | inputs: 30 | - opts: 31 | description: | 32 | Path to the given project's Info.plist file. 33 | is_dont_change_value: false 34 | is_expand: true 35 | is_required: true 36 | summary: "" 37 | title: Info.plist file path 38 | plist_path: null 39 | - build_version: $BITRISE_BUILD_NUMBER 40 | opts: 41 | is_dont_change_value: false 42 | is_expand: true 43 | is_required: true 44 | summary: Set the Build Number / Bundle Version to this value. 45 | title: Build Number 46 | -------------------------------------------------------------------------------- /steps/bitrise-artifact-deploy/assets/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /steps/bower/0.1.3/step.yml: -------------------------------------------------------------------------------- 1 | title: Run bower command 2 | summary: Runs `bower` with the given command and args. 3 | description: Runs `bower` with the given command and args. 4 | website: https://github.com/nhammond101/steps-bower 5 | source_code_url: https://github.com/nhammond101/steps-bower 6 | support_url: https://github.com/nhammond101/steps-bower/issues 7 | published_at: 2016-12-02T10:46:39.400538674Z 8 | source: 9 | git: https://github.com/nhammond101/steps-bower.git 10 | commit: f01eca0dffbc693d959bb6758cfb07c72de72077 11 | project_type_tags: 12 | - web 13 | type_tags: 14 | - installer 15 | deps: 16 | brew: 17 | - name: npm 18 | inputs: 19 | - opts: 20 | description: | 21 | Working directory of the step. 22 | You can leave it empty to not change it. 23 | title: Working directory 24 | workdir: $BITRISE_SOURCE_DIR 25 | - command: null 26 | opts: 27 | description: Specify the command to run with `bower`. For example `install`, or 28 | `test`. 29 | title: The `bower` command to run 30 | - args: null 31 | opts: 32 | description: |- 33 | Arguments are added to the `bower` command. You can specify multiple arguments, separated 34 | by a space character Nb. --allow-root is appended automatically. For example `--save` 35 | title: Arguments for running `bower` commands 36 | - is_debug: "no" 37 | opts: 38 | description: | 39 | If debug=yes the step will print debug infos about 40 | the working dir, tmp file path, exit code, etc. 41 | title: Debug? 42 | value_options: 43 | - "no" 44 | - "yes" 45 | --------------------------------------------------------------------------------