fix(build): type in how we pushed the header over
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m20s

This commit is contained in:
2026-04-03 12:33:20 -05:00
parent 0ce3790675
commit 83a94cacf3

View File

@@ -127,11 +127,21 @@ jobs:
tag = os.environ["TAG"]
header = f"""## 🚀 How to run this release
```bash
docker pull {image_name}:{tag}
docker run -d -p 3000:3000 {image_name}:{tag}
header = (
"## 🚀 How to run this release\n\n"
"### Pull image\n"
f"```bash\n"
f"docker pull {image_name}:{tag}\n"
f"```\n\n"
"### Run container\n"
f"```bash\n"
f"docker run -d \\\n"
f" --name lst \\\n"
f" -p 3000:3000 \\\n"
f" {image_name}:{tag}\n"
f"```\n\n"
"---\n\n"
)
```py
if "-" not in tag: