We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2607ad commit be05df1Copy full SHA for be05df1
ecosystem_cicd_tools/release.py
@@ -194,9 +194,13 @@ def blueprint_release(blueprint_name,
194
commit)
195
for blueprint_id, blueprint_path in blueprints.items():
196
blueprint_archive = package_blueprint(blueprint_id, blueprint_path)
197
+ file_wo_ext, ext = path.splitext(blueprint_archive)
198
+ new_archive_name = path.basename(
199
+ '{file_wo_ext}-{version}{ext}'.format(
200
+ file_wo_ext=file_wo_ext, version=version, ext=ext))
201
version_release.upload_asset(
202
blueprint_archive,
- path.basename(blueprint_archive),
203
+ new_archive_name,
204
'application/zip')
205
return version_release
206
0 commit comments