fixed travis build script

This commit is contained in:
Mariotaku Lee 2017-09-09 00:03:22 +08:00
parent e8970839c9
commit c374ab84ce
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
2 changed files with 7 additions and 5 deletions

View File

@ -75,11 +75,7 @@ deploy:
tags: true
# Publish to Google Play store
- provider: script
script:
- set -o allexport
- source ./twidere/src/google/.supplyrc
- fastlane supply run
- set +o allexport
script: ./travis/scripts/google_play_deploy.sh
on:
repo: TwidereProject/Twidere-Android
tags: true

View File

@ -0,0 +1,6 @@
#!/bin/bash
set -o allexport
source ./twidere/src/google/.supplyrc
fastlane supply run
set +o allexport