We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89e7c65 + 03e30bf commit 400a2b8Copy full SHA for 400a2b8
.github/workflows/cd.yml
@@ -51,10 +51,10 @@ jobs:
51
run: python -m pip install pyyaml
52
53
- name: Install Kiwix dependencies
54
- run:
55
- |
+ run: | # remove pre-commit, it's not needed for CI
56
cd apple
57
- brew bundle
+ cat Brewfile | grep -v -e pre-commit > Brewfile_CI
+ brew bundle --force --file Brewfile_CI
58
cd ..
59
60
- name: Generate project based on tag
.gitignore
@@ -7,4 +7,8 @@ custom_project_test.yml
7
# temp files for build
8
.brand_name
9
.build_number
10
-.version_number
+.version_number
11
+
12
+# this is CI specific
13
+Brewfile_CI
14
+Brewfile_CI.lock.json
0 commit comments