Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic committed Jan 29, 2025
1 parent ecd3242 commit 4211d6f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,11 @@ jobs:
working-directory: src/KubeUI.Desktop
shell: pwsh
run: |
[System.Text.Encoding]::UTF8.GetBytes($env:CHANGELOG) | Set-Content -Path CHANGELOG.md -AsByteStream
if([string]::IsNullOrEmpty($env:CHANGELOG){
"N/A" | Out-File -FilePath CHANGELOG.md
} else {
$env:CHANGELOG | Out-File -FilePath CHANGELOG.md
}
env:
CHANGELOG: ${{ needs.semantic-release.outputs.new_release_notes }}

Expand Down

0 comments on commit 4211d6f

Please sign in to comment.