From 022c9ad2293d0175e96d27fc06c4dd4aba06f123 Mon Sep 17 00:00:00 2001 From: OMGeeky <> Date: Sun, 16 Feb 2025 01:46:20 +0100 Subject: [PATCH] Update release workflow to read version from the correct file path (cherry picked from commit f14d21e322d4f214ec19bb297b6b9eaecf09c374) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 163641c..f7481d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,9 +16,9 @@ jobs: shell: bash run: | echo "Reading version from file:" - cat packaging/ATCS_latest + cat res/ATCS_latest echo "" - VERSION=$(tr -d '[:space:]' < "packaging/ATCS_latest") + VERSION=$(tr -d '[:space:]' < "res/ATCS_latest") echo "Processed version: $VERSION" echo "VERSION=$VERSION" >> $GITHUB_ENV echo "Environment variable set to: $VERSION"