From cf5a2063baa25ee38c905ec0d5b70c404411459e Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Sun, 14 Jan 2024 19:33:44 +0100 Subject: [PATCH] Fix naming --- .github/workflows/cd.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d47ac29..4a6d4e8 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -86,13 +86,14 @@ jobs: - name: Set up scheme, version, build_number from files run: | - cd apple/custom - ls -la - VERSION=$(<.build_version) - echo "VERSION=$VERSION" >> $GITHUB_ENV - - BRAND=$(<.brand_name) + cd apple + ls -la custom + + BRAND=$(<./custom/.brand_name) echo "BRAND=$BRAND" >> $GITHUB_ENV + + VERSION=$(<./custom/.version_number) + echo "VERSION=$VERSION" >> $GITHUB_ENV # taken from: kiwix/apple .github/workflows/cd.yml - name: Set up variables for build