Fix typo in .github/scripts/gen-docker-tags.py (#20089)
It’s currently breaking publishing of Docker images.
Austin S. Hemmelgarn committed
Apr 8, 2025 at 09:59 UTC
35281ed2d5813a433cc5233fb2ce6b6bb3682f33
1 file changed
+1
-1
.github/scripts/gen-docker-tags.py
+1
-1
@@ -55,7 +55,7 @@ all_tags = [x for y in tags.values() for x in y]
55
56
def write_output(name: str, value: str) -> None:
57
with open(os.getenv('GITHUB_OUTPUT'), 'a') as f:
58
- f.write(f'{name}={value}')
58
+ f.write(f'{name}={value}\n')
59
60
61
write_output('tags', ','.join(all_tags))