From 3dbbed5ebfec60efef16a1b5c734825dac0a5377 Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Sun, 14 Jan 2024 19:03:50 +0100 Subject: [PATCH] Fix verifycation of path --- .github/workflows/cd.yml | 14 ++++++++------ src/generate_and_download.py | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 50a465f..7ff1fee 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -45,12 +45,12 @@ jobs: - name: Install Python dependencies for custom project generation run: python -m pip install pyyaml - - name: Install Kiwix dependencies - run: - | - cd apple - brew bundle - cd .. + # - name: Install Kiwix dependencies + # run: + # | + # cd apple + # brew bundle + # cd .. - name: Generate project based on tag env: @@ -93,6 +93,8 @@ jobs: - name: Set up scheme, version, build_number from files run: | + pwd() + ls -la VERSION=$(cat apple/custom/.build_version) echo "VERSION=$VERSION" >> $GITHUB_ENV diff --git a/src/generate_and_download.py b/src/generate_and_download.py index f43ae56..3df7afe 100644 --- a/src/generate_and_download.py +++ b/src/generate_and_download.py @@ -34,7 +34,7 @@ def main(): custom_apps.create_plists(custom_plist=Path("Custom.plist")) # download the zim files - custom_apps.download_zim_files() + # custom_apps.download_zim_files() # finally create the project file, containing all brands as targets custom_apps.create_custom_project_file(path=Path("custom_project.yml"))