Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Commit

Permalink
Travis: try to fix upload of .dmg
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinDuquesnoy committed Dec 2, 2017
1 parent 1f8de78 commit 011c486
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/travis/after_success.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ if [[ -n "$TRAVIS_TAG" ]] || [[ "$TRAVIS_BRANCH" == release* ]] || [[ "$TRAVIS_E
# Full Build
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo pip install -U github3.py;
# upload build artifacts to github
python ./scripts/upload.py ${tagName} dist/*;
else
# upload build artifacts to github
python2 ./scripts/upload.py ${tagName} dist/*;
fi
# upload build artifacts to github
python ./scripts/upload.py ${tagName} dist/*;

else
# Commit Build
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
Expand Down
1 change: 1 addition & 0 deletions scripts/travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
source ./scripts/env-setup/osx/env-setup.sh;
pip2 install github3.py
pip2 --version
fi

0 comments on commit 011c486

Please sign in to comment.