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

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<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,18 +28,19 @@
<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>
<key>ITSAppUsesNonExemptEncryption</key> <key>ITSAppUsesNonExemptEncryption</key>
<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 />
<key>UTExportedTypeDeclarations</key> <key>UTExportedTypeDeclarations</key>
<array> <array>
<dict> <dict>
@ -51,7 +52,7 @@
<key>UTTypeDescription</key> <key>UTTypeDescription</key>
<string>OpenZIM Content File</string> <string>OpenZIM Content File</string>
<key>UTTypeIconFiles</key> <key>UTTypeIconFiles</key>
<array/> <array />
<key>UTTypeIdentifier</key> <key>UTTypeIdentifier</key>
<string>org.openzim.zim</string> <string>org.openzim.zim</string>
<key>UTTypeTagSpecification</key> <key>UTTypeTagSpecification</key>
@ -63,5 +64,9 @@
</dict> </dict>
</dict> </dict>
</array> </array>
</dict> <key>NSSupportsLiveActivities</key>
<true />
<key>NSSupportsLiveActivitiesFrequentUpdates</key>
<true />
</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