Skip to content

Commit

Permalink
Use correct Environment Variable Name in 'release.yml' Workflow File
Browse files Browse the repository at this point in the history
  • Loading branch information
og-mrk committed Jul 18, 2024
1 parent 4583932 commit 607b3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
Get-Content ./winutil.ps1 -TotalCount 30 | ForEach-Object {
if ($_ -match 'Version\s*:\s*(\d{2}\.\d{2}\.\d{2})') {
$version = $matches[1]
echo "version=$version" >> $env:VERSION
echo "version=$version" >> $env:GITHUB_ENV
break
}
}
Expand Down

0 comments on commit 607b3d8

Please sign in to comment.