Files
openhuman/scripts/ci-secrets.example.json
T
Steven Enamakel 52ba6b9614 feat: add macOS ARM64 build workflow and script
- 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.
2026-03-26 17:33:08 -07:00

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"
}
}