From 1ad1339f0c0d8a2588e909bc48801abcc4791a12 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Thu, 13 Feb 2025 10:04:52 -0600 Subject: [PATCH] ci: use correct path for version.txt for main builds --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d174e20..5547f03 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -94,9 +94,8 @@ jobs: name: Version - name: Set Version Number shell: powershell - run: | - Get-ChildItem "./Version" - $version = Get-Content -Path ./Version/version.txt + run: | + $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