Compare commits
2 Commits
b02b93b83f
...
fb2c5609aa
| Author | SHA1 | Date | |
|---|---|---|---|
| fb2c5609aa | |||
| 17aed6cb89 |
5
.changeset/clean-kiwis-buy.md
Normal file
5
.changeset/clean-kiwis-buy.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"lst_v3": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
something strange in the bushes
|
||||||
@@ -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",
|
||||||
|
|||||||
@@ -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 = {
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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": {
|
||||||
|
|||||||
Reference in New Issue
Block a user