Skip to content

Commit bc5c54a

Browse files
author
earthmant
committed
update that
1 parent 8660054 commit bc5c54a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ecosystem_cicd_tools/release.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# limitations under the License.
1515

1616
import re
17+
import shutil
1718
import logging
1819
import requests
1920
from os import environ, path, pardir
@@ -133,6 +134,7 @@ def update_latest_release_resources(most_recent_release, name='latest'):
133134
with open(tmp.name, 'wb') as asset_file:
134135
r = requests.get(asset.browser_download_url, stream=True)
135136
asset_file.write(r.content)
137+
shutil.move(tmp.name, asset.name)
136138
upload_asset(name, tmp.name, asset.label or asset.name)
137139

138140

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='cloudify-ecosystem-test',
6-
version='2.2.8',
6+
version='2.2.9',
77
license='LICENSE',
88
packages=[
99
'ecosystem_tests',

0 commit comments

Comments
 (0)