Commit d6023765 authored by Daniel Cosmo Pizetta's avatar Daniel Cosmo Pizetta
Browse files

FIX: gitlab-ci

parent bf6ece7d
Loading
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -129,15 +129,16 @@ py36-release-pypi:
  script:
    - pip install twine
    - python setup.py sdist bdist_wheel
    - echo $CI_COMMIT_TAG
    - twine check dist/*
    # try upload in test platform before the oficial
    - twine upload --repository-url https://test.pypi.org/legacy/ dist/*
    - pip install --no-deps --index-url https://test.pypi.org/simple/ helpdev
    - pip uninstall helpdev
    - pip install --no-deps --index-url https://test.pypi.org/simple/ helpdev==$CI_COMMIT_TAG
    - pip uninstall helpdev -y
    # upload to oficial
    - twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
    - pip install helpdev==$CI_COMMIT_TAG
    - helpdev --version
    - pip uninstall helpdev
    - pip uninstall helpdev -y
  only:
    - tags
+6 −0
Original line number Diff line number Diff line
@@ -2,6 +2,12 @@ Changes
=======


v0.6.9
------

* Fix gitlab-ci


v0.6.8
------

+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ License:

"""

__version__ = "0.6.8"
__version__ = "0.6.9"

import copy
import os