Guest User

Untitled

a guest
Jan 29th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. jobs:
  2. include:
  3. - python: '3.7'
  4. - python: '3.6'
  5. - python: '3.5'
  6.  
  7. - stage: release
  8. if: tag IS present
  9. deploy:
  10. provider: pypi
  11. user: praekelt.org
  12. password:
  13. secure: <encrypted password>
  14. distributions: sdist bdist_wheel
  15. on:
  16. tags: true
  17.  
  18. install: skip
  19. script: skip
Add Comment
Please, Sign In to add comment