From f14d21e322d4f214ec19bb297b6b9eaecf09c374 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 --- .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 8d9b6a0..84b1d33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,8 +16,8 @@ jobs: shell: bash run: | echo "Reading version from file:" - cat packaging/ATCS_latest - VERSION=$(cat packaging/ATCS_latest) + cat res/ATCS_latest + VERSION=$(cat res/ATCS_latest) echo "Processed version: $VERSION" echo "VERSION=$VERSION" >> $GITHUB_ENV echo "Environment variable set to: $VERSION"