Skip to content

Commit

Permalink
Merge pull request #52 from kiwix/cd-fix-bundle-install-with-force
Browse files Browse the repository at this point in the history
Fix CD bundle install with --force
  • Loading branch information
BPerlakiH committed Feb 11, 2024
2 parents 89e7c65 + 03e30bf commit 400a2b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
run: python -m pip install pyyaml

- name: Install Kiwix dependencies
run:
|
run: | # remove pre-commit, it's not needed for CI
cd apple
brew bundle
cat Brewfile | grep -v -e pre-commit > Brewfile_CI
brew bundle --force --file Brewfile_CI
cd ..
- name: Generate project based on tag
Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ custom_project_test.yml
# temp files for build
.brand_name
.build_number
.version_number
.version_number

# this is CI specific
Brewfile_CI
Brewfile_CI.lock.json

0 comments on commit 400a2b8

Please sign in to comment.