mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
- Introduced a new GitHub Actions workflow for building Tauri applications on macOS Apple Silicon (aarch64). - Created a script to facilitate local execution of the macOS ARM64 build process, including handling secrets and environment variables. - Updated existing workflows to replace the APPLE_APP_SPECIFIC_PASSWORD with a more generic APPLE_PASSWORD for consistency. - Modified example secrets file to reflect the new password structure.
24 lines
581 B
JSON
24 lines
581 B
JSON
{
|
|
"secrets": {
|
|
"APPLE_CERTIFICATE_BASE64": "",
|
|
"APPLE_CERTIFICATE_PASSWORD": "",
|
|
"APPLE_ID": "",
|
|
"APPLE_PASSWORD": "",
|
|
"APPLE_SIGNING_IDENTITY": "",
|
|
"APPLE_TEAM_ID": "",
|
|
"GITHUB_TOKEN": "",
|
|
"TAURI_SIGNING_PRIVATE_KEY_PASSWORD": "",
|
|
"TAURI_SIGNING_PRIVATE_KEY": "",
|
|
"XGH_TOKEN": "",
|
|
"XGITHUB_APP_ID": "",
|
|
"XGITHUB_APP_PRIVATE_KEY": ""
|
|
},
|
|
"vars": {
|
|
"BASE_URL": "https://localhost",
|
|
"VITE_BACKEND_URL": "https://localhost:5005",
|
|
"VITE_SKILLS_GITHUB_REPO": "",
|
|
"VITE_SENTRY_DSN": "",
|
|
"VITE_DEBUG": "true"
|
|
}
|
|
}
|