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": [ "changesets": [
"bold-ties-remain", "bold-ties-remain",
"chilly-teams-bow", "chilly-teams-bow",
"clean-kiwis-buy",
"lucky-dingos-brake", "lucky-dingos-brake",
"neat-years-unite", "neat-years-unite",
"soft-onions-appear", "soft-onions-appear",

View File

@@ -123,10 +123,12 @@ jobs:
repo = os.environ["GITEA_REPOSITORY"] repo = os.environ["GITEA_REPOSITORY"]
token = os.environ["RELEASE_TOKEN"] token = os.environ["RELEASE_TOKEN"]
with open("release_body.md", "r", encoding="utf-8") as f:
image_name = os.environ["IMAGE_NAME"] image_name = os.environ["IMAGE_NAME"]
tag = os.environ["TAG"] tag = os.environ["TAG"]
with open("release_body.md", "r", encoding="utf-8") as f:
changelog_body = f.read()
header = ( header = (
"## 🚀 How to run this release\n\n" "## 🚀 How to run this release\n\n"
"### Pull image\n" "### Pull image\n"
@@ -143,9 +145,11 @@ jobs:
"---\n\n" "---\n\n"
) )
body = f.read() body = (
header
body = body.rstrip() + f"\n\n### Container Image\n\n- `{image_name}:{tag}`\n" + changelog_body.rstrip()
+ f"\n\n### Container Image\n\n- `{image_name}:{tag}`\n"
)
url = f"{server_url}/api/v1/repos/{repo}/releases" url = f"{server_url}/api/v1/repos/{repo}/releases"
payload = { payload = {

View File

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

View File

@@ -1,6 +1,6 @@
{ {
"name": "lst_v3", "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", "description": "The tool that supports us in our everyday alplaprod",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {