ota-manager 1.0.13 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/ota-build.cjs CHANGED
@@ -263,7 +263,10 @@ async function buildIos() {
263
263
  const payload = { ref: branch };
264
264
  if (activeWorkflowId === 'ios-build.yml') {
265
265
  payload.inputs = {
266
- channel: process.env.PUBLIC_APP_CHANNEL || 'training'
266
+ channel: process.env.PUBLIC_APP_CHANNEL || 'training',
267
+ api_url: process.env.PUBLIC_API_URL || '',
268
+ github_ota_pat: process.env.PUBLIC_GITHUB_OTA_PAT || '',
269
+ ota_update_url: process.env.PUBLIC_OTA_UPDATE_URL || ''
267
270
  };
268
271
  }
269
272
  await githubApi(`/repos/${REPO}/actions/workflows/${activeWorkflowId}/dispatches`, 'POST', payload);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ota-manager",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Multi-provider OTA update manager for Astro and static web projects.",
5
5
  "type": "module",
6
6
  "main": "index.js",