Last active
April 29, 2017 20:02
-
-
Save FranzBusch/167f41b9c5cc9b313144de6ee86514ce to your computer and use it in GitHub Desktop.
Travis for automatic pod release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: objective-c | |
osx_image: xcode8.3 | |
branches: | |
only: | |
- master | |
- /[0-9]+\.[0-9]+\.[0-9]+/ | |
install: | |
- gem install fastlane --no-ri --no-doc --no-document | |
- gem install cocoapods --no-ri --no-doc --no-document | |
script: | |
- bash ./scripts/travis.sh | |
deploy: | |
provider: script | |
script: ./scripts/release.sh | |
on: | |
tags: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment