ci: use correct path to get version.txt

This commit is contained in:
Andrew Welker
2025-02-13 10:04:09 -06:00
committed by GitHub
parent f3f34ea7fd
commit af88714643

View File

@@ -120,9 +120,7 @@ jobs:
- name: Set Version Number
shell: powershell
run: |
Get-ChildItem "."
Get-ChildItem "./Version"
$version = Get-Content -Path ./Version/version.txt
$version = Get-Content -Path ./version.txt
Write-Host "Version: $version"
echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Remove-Item -Path ./Version/version.txt