From ec51b994e8c88bde3839a36306b6a9084f9a0f9a Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Sun, 14 Jan 2024 19:27:41 +0100 Subject: [PATCH] Fix relative paths --- .github/workflows/cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 234ab5b..d47ac29 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -86,12 +86,12 @@ jobs: - name: Set up scheme, version, build_number from files run: | - cd apple + cd apple/custom ls -la - VERSION=$(cat ./custom/.build_version) + VERSION=$(<.build_version) echo "VERSION=$VERSION" >> $GITHUB_ENV - BRAND=$(cat ./custom/.brand_name) + BRAND=$(<.brand_name) echo "BRAND=$BRAND" >> $GITHUB_ENV # taken from: kiwix/apple .github/workflows/cd.yml