changes, add dotenv dependency

This commit is contained in:
2025-01-13 08:08:54 +01:00
parent ee256040d9
commit 4b16bfd501
3 changed files with 17 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ $changes = if ($changelogContent -match $changesPattern) {
# Create a new release with tea
Write-Host "Creating a new release with tea..."
$releaseTitle = "LibrarySystem - Version $latestTag"
$rel_comment = "Changes in this release: `n$changes`n"
$rel_comment = "#Changes in this release: `n$changes`n"
$rel = tea release create --title $releaseTitle --note $rel_comment --tag $latestTag
if (-not $rel) {
Write-Error "Failed to create a new release. Exiting."