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