2 Commits

Author SHA1 Message Date
fb2c5609aa chore(release): version packages
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m46s
Release and Build Image / release (push) Successful in 1m20s
2026-04-03 13:06:52 -05:00
17aed6cb89 fix(lala): something here 2026-04-03 13:06:14 -05:00
5 changed files with 37 additions and 21 deletions

View File

@@ -0,0 +1,5 @@
---
"lst_v3": patch
---
something strange in the bushes

View File

@@ -7,6 +7,7 @@
"changesets": [
"bold-ties-remain",
"chilly-teams-bow",
"clean-kiwis-buy",
"lucky-dingos-brake",
"neat-years-unite",
"soft-onions-appear",

View File

@@ -123,29 +123,33 @@ jobs:
repo = os.environ["GITEA_REPOSITORY"]
token = os.environ["RELEASE_TOKEN"]
image_name = os.environ["IMAGE_NAME"]
tag = os.environ["TAG"]
with open("release_body.md", "r", encoding="utf-8") as f:
image_name = os.environ["IMAGE_NAME"]
tag = os.environ["TAG"]
changelog_body = f.read()
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"
)
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"
)
body = f.read()
body = body.rstrip() + f"\n\n### Container Image\n\n- `{image_name}:{tag}`\n"
body = (
header
+ changelog_body.rstrip()
+ f"\n\n### Container Image\n\n- `{image_name}:{tag}`\n"
)
url = f"{server_url}/api/v1/repos/{repo}/releases"
payload = {

View File

@@ -1,5 +1,11 @@
# lst_v3
## 0.1.0-alpha.8
### Patch Changes
- something strange in the bushes
## 0.1.0-alpha.7
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "lst_v3",
"version": "0.1.0-alpha.7",
"version": "0.1.0-alpha.8",
"description": "The tool that supports us in our everyday alplaprod",
"main": "index.js",
"scripts": {