Skip to content

Commit

Permalink
use comma separation
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrai2 committed Dec 17, 2024
1 parent 0e6aa68 commit 7887822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
tags = "${{ inputs.tags }}".split(",")
full_image = [f"{image}:py{version}-{tag.strip()}" for tag in tags]
with open(os.environ['GITHUB_OUTPUT'], 'a') as file:
file.write(f"tags={'\n'.join(full_image)}")
file.write(f"tags={', '.join(full_image)}")
EOF
- name: Build image and export to Docker
Expand Down

0 comments on commit 7887822

Please sign in to comment.