Codebase list python-faraday / 62d1b14 .gitlab / ci / publish / .set-tag-gitlab-ci.yml
62d1b14

Tree @62d1b14 (Download .tar.gz)

.set-tag-gitlab-ci.yml @62d1b14raw · history · blame

publish_pypi:
    image: python:3
    stage: publish
    script:
      - !reference [ .clone_and_replace_www, script ]
      - apt-get update -qy
      - apt-get install twine -y
      - python setup.py sdist bdist_wheel
      - twine upload -u $PYPI_USER -p $PYPI_PASS dist/* --verbose
    rules:
      - !reference [ .on-community-tag, rules ]