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
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m20s
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user