Skip to content

Commit 720c497

Browse files
committed
cleanup
1 parent 29d14bd commit 720c497

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,23 @@ jobs:
2929
- pytest --cov=./
3030
- codecov
3131

32-
- stage: deploy release
32+
- stage: create release
3333
if: tag is present
3434
python: 3.6
3535
install: pip install sphinx
3636
script:
3737
- sphinx-build -Ean -b html -j auto -D todo_include_todos=0 ./doc ./doc/_build/html
38-
- pushd ./doc/_build/html ; zip -r ../../../${TRAVIS_TAG}.zip . ; popd
39-
- ls -la .
38+
- pushd ./doc/_build/html ; zip -r ../../../${TRAVIS_TAG}-doc.zip . ; popd
4039
deploy:
4140
provider: releases
4241
skip_cleanup: true
4342
api_key: $GITHUB_TOKEN
44-
file: ${TRAVIS_TAG}.zip
43+
file: ${TRAVIS_TAG}-doc.zip
4544
draft: true
4645
on:
4746
tags: true
4847

49-
- stage: deploy documentation
48+
- stage: upload documentation
5049
if: tag is present
5150
python: 3.6
5251
install: pip install sphinx

src/sasctl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright © 2019, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
55
# SPDX-License-Identifier: Apache-2.0
66

7-
__version__ = '0.9.6-alpha4'
7+
__version__ = '0.9.6'
88
__author__ = 'SAS'
99
__credits__ = ['Lucas De Paula, Peter Tobac, Jon Walker']
1010
__license__ = 'Apache 2.0'

0 commit comments

Comments
 (0)