Merge pull request #89 from kiwix/86-fix-ci-after-dynamic-plist

86 fix CI builds
This commit is contained in:
Kelson 2025-02-21 11:14:22 +01:00 committed by GitHub
commit c168312c56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 72 additions and 60 deletions

View File

@ -4,6 +4,7 @@ on:
schedule: schedule:
- cron: '01 0 * * *' # NIGHTLY @ 00:01 - cron: '01 0 * * *' # NIGHTLY @ 00:01
workflow_dispatch: workflow_dispatch:
pull_request:
push: push:
branches: branches:
- main - main

5
.gitignore vendored
View File

@ -12,3 +12,8 @@ custom_project_test.yml
# this is CI specific # this is CI specific
Brewfile_CI Brewfile_CI
Brewfile_CI.lock.json Brewfile_CI.lock.json
# python env specific
bin
lib
pyvenv.cfg

View File

@ -3,7 +3,7 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>APP_STORE_ID</key> <key>APP_STORE_ID</key>
<string>$(APP_STORE_ID)</string> <string>id997079563</string>
<key>BGTaskSchedulerPermittedIdentifiers</key> <key>BGTaskSchedulerPermittedIdentifiers</key>
<array> <array>
<string>org.kiwix.library_refresh</string> <string>org.kiwix.library_refresh</string>
@ -28,7 +28,7 @@
<string>Viewer</string> <string>Viewer</string>
<key>CFBundleURLSchemes</key> <key>CFBundleURLSchemes</key>
<array> <array>
<string>kiwix</string> <string>zim</string>
</array> </array>
</dict> </dict>
</array> </array>
@ -36,7 +36,8 @@
<false /> <false />
<key>UIBackgroundModes</key> <key>UIBackgroundModes</key>
<array> <array>
<string>fetch</string> <string>audio</string>
<string>processing</string>
</array> </array>
<key>UIFileSharingEnabled</key> <key>UIFileSharingEnabled</key>
<true /> <true />
@ -63,5 +64,9 @@
</dict> </dict>
</dict> </dict>
</array> </array>
<key>NSSupportsLiveActivities</key>
<true />
<key>NSSupportsLiveActivitiesFrequentUpdates</key>
<true />
</dict> </dict>
</plist> </plist>

View File

@ -8,6 +8,7 @@
"settings_default_external_link_to": "alwaysLoad", "settings_default_external_link_to": "alwaysLoad",
"settings_show_search_snippet": false, "settings_show_search_snippet": false,
"settings_show_external_link_option": false, "settings_show_external_link_option": false,
"uses_audio": false,
"zim_auth": "HTTP_BASIC_ACCESS_AUTHENTICATION", "zim_auth": "HTTP_BASIC_ACCESS_AUTHENTICATION",
"zim_url": "https://www.dwds.de/kiwix/f/dwds_de_dictionary_nopic_2023-12-15.zim", "zim_url": "https://www.dwds.de/kiwix/f/dwds_de_dictionary_nopic_2023-12-15.zim",
"build_number": 3 "build_number": 3