Skip to content

Commit

Permalink
Fixed run_update_release
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Jan 31, 2024
1 parent 2c4b9a5 commit 511028e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exasol/ds/sandbox/lib/update_release/run_update_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ def run_update_release(aws_access: AwsAccess, gh_access: GithubReleaseAccess,
additional_release_notes = render_template("additional_release_notes.jinja")
with tempfile.TemporaryDirectory() as temp_dir:
artifacts_file = f"{temp_dir}/artifacts.md"
asset_types = tuple(
asset_types = tuple((
AssetTypes.DOCKER,
AssetTypes.AMI,
AssetTypes.VM_S3,
)
))
with open(artifacts_file, "w") as file:
print_assets(aws_access, asset_id, file, asset_types)
content = additional_release_notes + open(artifacts_file, "r").read()
Expand Down

0 comments on commit 511028e

Please sign in to comment.