Created
January 28, 2019 14:35
-
-
Save JayH5/197f06e47d70319ef461ed9b98dfdd7a to your computer and use it in GitHub Desktop.
Example release stage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
include: | |
- python: '3.7' | |
- python: '3.6' | |
- python: '3.5' | |
- stage: release | |
if: tag IS present | |
deploy: | |
provider: pypi | |
user: praekelt.org | |
password: | |
secure: <encrypted password> | |
distributions: sdist bdist_wheel | |
on: | |
tags: true | |
install: skip | |
script: skip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment