Skip to content

Commit

Permalink
ci: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre58 committed May 6, 2024
1 parent 23cc75a commit 56a61af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ jobs:
echo "is-preview=true" >> $Env:GITHUB_OUTPUT
if ('${{ needs.gitversion.outputs.suffix_label }}' -eq 'pre') {
echo "release-display-name='${{ needs.gitversion.outputs.version }} - Preview'" >> $Env:GITHUB_OUTPUT
} else if ('${{ needs.gitversion.outputs.suffix_label }}' -eq 'alpha') {
} elseif ('${{ needs.gitversion.outputs.suffix_label }}' -eq 'alpha') {
echo "release-display-name='${{ needs.gitversion.outputs.version }} - Alpha'" >> $Env:GITHUB_OUTPUT
} else if ('${{ needs.gitversion.outputs.suffix_label }}' -eq 'beta') {
} elseif ('${{ needs.gitversion.outputs.suffix_label }}' -eq 'beta') {
echo "release-display-name='${{ needs.gitversion.outputs.version }} - Beta'" >> $Env:GITHUB_OUTPUT
}
}
Expand Down

0 comments on commit 56a61af

Please sign in to comment.