From 4bc4dd6fe5008c48607657dcf63c712ac4c78eb5 Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Sun, 25 Mar 2018 16:23:25 +0200 Subject: [PATCH] Include build artifacts in GitHub releases --- .travis.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index a41ead4..4e83d79 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,13 +12,6 @@ after_success: - codecov - export CHANGELOG=$(gitchangelog $(git describe --abbrev=0 --tags HEAD^)..HEAD) deploy: -- provider: releases - api_key: $GITHUB_OAUTH_TOKEN - body: $CHANGELOG - skip_cleanup: true - on: - tags: true - python: '3.6' - provider: pypi distributions: sdist bdist_wheel user: $TWINE_USERNAME @@ -26,3 +19,11 @@ deploy: on: tags: true python: '3.6' +- provider: releases + api_key: $GITHUB_OAUTH_TOKEN + file: dist/* + body: $CHANGELOG + skip_cleanup: true + on: + tags: true + python: '3.6'