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"]
|
tag = os.environ["TAG"]
|
||||||
|
|
||||||
header = f"""## 🚀 How to run this release
|
header = (
|
||||||
|
"## 🚀 How to run this release\n\n"
|
||||||
```bash
|
"### Pull image\n"
|
||||||
docker pull {image_name}:{tag}
|
f"```bash\n"
|
||||||
docker run -d -p 3000:3000 {image_name}:{tag}
|
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
|
```py
|
||||||
if "-" not in tag:
|
if "-" not in tag:
|
||||||
|
|||||||
Reference in New Issue
Block a user