Skip to content

Commit

Permalink
Fix CI (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisoro authored Oct 21, 2024
1 parent 8650939 commit d8ec8a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
id: check_beta
shell: powershell
run: |
if (${{ env.VERSION }}.Contains("beta") -or ${{ env.VERSION }}.Contains("alpha")) {
if ($env:VERSION -like "*beta*" -or $env:VERSION -like "*alpha*") {
echo "IS_BETA=true" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
} else {
echo "IS_BETA=false" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
Expand Down

0 comments on commit d8ec8a1

Please sign in to comment.