Merge pull request #31 from kiwix/feature/re-use-cd-from-main

Fix relative paths
This commit is contained in:
BPH 2024-01-14 19:27:55 +01:00 committed by GitHub
commit c5108efae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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