Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ImaterialC committed Jun 5, 2023
2 parents 54accb9 + 01cd16c commit d5a8fc5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,16 @@ jobs:
do {
$char = [char]$charNumber
if ($charNumber -eq 64) {
$ReleaseTitle = "Pricone UI EN DMM v$Date"
$ReleaseTag = $DateWithoutDot
}
else {
$ReleaseTitle = "Pricone UI EN DMM v$Date$($char.ToString().ToLower())"
$ReleaseTag = $DateWithoutDot + $char.ToString().ToLower()
}
$charNumber++
}
while (git tag -l $ReleaseTag)
$ReleaseTitle = "Pricone UI EN DMM v$Date$($char.ToString().ToLower())"
"RELEASE_TAG=$ReleaseTag" >> $Env:GITHUB_ENV
"RELEASE_TITLE=$ReleaseTitle" >> $Env:GITHUB_ENV
Expand Down Expand Up @@ -108,7 +109,7 @@ jobs:
gh release create `
--latest `
--notes-file RELEASE_NOTE `
--title ${{ env.RELEASE_TITLE }}`
--title "${{ env.RELEASE_TITLE }}"`
${{ env.RELEASE_TAG }} `
PriconneTL_${{ env.RELEASE_TAG }}.zip `
Expand Down

0 comments on commit d5a8fc5

Please sign in to comment.