Skip to content

Commit 400a2b8

Browse files
authored
Merge pull request #52 from kiwix/cd-fix-bundle-install-with-force
Fix CD bundle install with --force
2 parents 89e7c65 + 03e30bf commit 400a2b8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
run: python -m pip install pyyaml
5252

5353
- name: Install Kiwix dependencies
54-
run:
55-
|
54+
run: | # remove pre-commit, it's not needed for CI
5655
cd apple
57-
brew bundle
56+
cat Brewfile | grep -v -e pre-commit > Brewfile_CI
57+
brew bundle --force --file Brewfile_CI
5858
cd ..
5959
6060
- name: Generate project based on tag

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ custom_project_test.yml
77
# temp files for build
88
.brand_name
99
.build_number
10-
.version_number
10+
.version_number
11+
12+
# this is CI specific
13+
Brewfile_CI
14+
Brewfile_CI.lock.json

0 commit comments

Comments
 (0)