From 771fb3361b90c347502433e01cd1e704ad393552 Mon Sep 17 00:00:00 2001 From: Grigori Goronzy Date: Tue, 19 Sep 2017 10:28:12 +0200 Subject: [PATCH] Fix deploy --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9f68a77..30c0009 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,18 +15,19 @@ install: script: - python setup.py build - python setup.py test +before_deploy: - deactivate - python3 setup.py bdist_rpm - dpkg-buildpackage -uc -us - cp ../*.deb dist/ deploy: - python: "3.4" provider: releases api_key: $GH_TOKEN file_glob: true file: - - dist/stcgal*.deb - - dist/stcgal*.rpm + - dist/stcgal*_all.deb + - dist/stcgal*.noarch.rpm skip_cleanup: true on: tags: true + python: "3.4"