惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
L
LangChain Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
WordPress大学
WordPress大学
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
有赞技术团队
有赞技术团队
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat: configure ios app store release upload · openclaw/o...
joshavant · 2026-06-16 · via Recent Commits to openclaw:main

@@ -56,17 +56,21 @@ Prereqs:

5656

- `xcodegen`

5757

- `fastlane`

5858

- Apple account signed into Xcode for the canonical OpenClaw team (`FWJYW4S8P8`)

59-

- Xcode account permissions to create Apple Distribution certificates, App IDs, and App Store provisioning profiles

59+

- `asc` CLI authenticated for the canonical OpenClaw team

60+

- Release-owner access to the encrypted signing repo password (`ASC_MATCH_PASSWORD`)

6061

- App Store Connect app already created for `ai.openclawfoundation.app`

6162

- App Store Connect API key set up in Keychain via `scripts/ios-asc-keychain-setup.sh` when auto-resolving a build number or uploading to App Store Connect

62636364

Release behavior:

64656566

- Local development uses the canonical `ai.openclawfoundation.app*` bundle IDs when the OpenClaw team is available, and unique `ai.openclawfoundation.app.test.*` bundle IDs only for non-canonical fallback teams.

6667

- App Store release uses canonical `ai.openclawfoundation.app*` bundle IDs through a temporary generated xcconfig in `apps/ios/build/AppStoreRelease.xcconfig`.

67-

- App Store release uses automatic signing with `Apple Distribution` and `-allowProvisioningUpdates`, so Xcode can create missing distribution certificates/profiles for the canonical team when the signed-in account has permission.

68+

- App Store release uses manual `Apple Distribution` signing with profile names pinned in `apps/ios/Config/AppStoreSigning.json`.

69+

- `asc` owns one-time Developer Portal setup and encrypted signing sync. Fastlane owns release handling after those assets exist.

6870

- App Store release also switches the app to `OpenClawPushTransport=relay`, `OpenClawPushDistribution=official`, `OpenClawPushAPNsEnvironment=production`, and a production `aps-environment` entitlement.

69-

- App Store screenshots use `pnpm ios:screenshots`, which drives Fastlane Snapshot through a deterministic connected screenshot fixture instead of a live gateway.

71+

- `pnpm ios:release:upload` generates App Store screenshots and uploads release notes before archiving and uploading the IPA.

72+

- `pnpm ios:release` remains a compatibility alias for `pnpm ios:release:upload`; prefer the explicit upload command in new release docs and automation.

73+

- App Review submission is manual in App Store Connect. The release lane uploads a build and metadata, but does not submit for review.

7074

- The release flow does not modify `apps/ios/.local-signing.xcconfig` or `apps/ios/LocalSigning.xcconfig`.

7175

- `apps/ios/version.json` is the pinned iOS release version source.

7276

- `apps/ios/CHANGELOG.md` is the iOS-only changelog and release-note source.

@@ -79,10 +83,27 @@ Release behavior:

79838084

Relay behavior for App Store builds:

818582-

- Beta builds default to `https://ios-push-relay.openclaw.ai`.

86+

- Release builds default to `https://ios-push-relay.openclaw.ai`.

8387

- Optional custom relay override: `OPENCLAW_PUSH_RELAY_BASE_URL=https://relay.example.com`

8488

This must be a plain `https://host[:port][/path]` base URL without whitespace, query params, fragments, or xcconfig metacharacters.

858990+

Signing setup commands:

91+92+

```bash

93+

pnpm ios:release:signing:plan

94+

pnpm ios:release:signing:check

95+

pnpm ios:release:signing:setup

96+

ASC_MATCH_PASSWORD=... pnpm ios:release:signing:sync:push

97+

ASC_MATCH_PASSWORD=... pnpm ios:release:signing:sync:pull

98+

```

99+100+

Release-owner secrets:

101+102+

- App Store Connect API auth uses Keychain for private key material plus non-secret `apps/ios/fastlane/.env` variables.

103+

- The encrypted signing repo password lives outside this repo in the release-owner vault and is exposed locally as `ASC_MATCH_PASSWORD`.

104+

- Apple Distribution private keys, certificates, provisioning profiles, and decrypted signing sync output stay under `apps/ios/build/` or Keychain and are gitignored.

105+

- Rotating release signing means revoking/replacing the Developer Portal certificate or profile with `asc`, then pushing a fresh encrypted sync state.

106+86107

Prepare the generated release xcconfig/project without archiving:

8710888109

```bash

@@ -98,13 +119,13 @@ pnpm ios:release:archive

98119

Archive and upload to App Store Connect:

99120100121

```bash

101-

pnpm ios:release

122+

pnpm ios:release:upload

102123

```

103124104125

If you need to force a specific build number:

105126106127

```bash

107-

pnpm ios:release -- --build-number 7

128+

pnpm ios:release:upload -- --build-number 7

108129

```

109130110131

### Maintainer Quick Release Checklist

@@ -136,6 +157,8 @@ This should create `apps/ios/fastlane/.env` with the non-secret ASC variables wh

136157

- `ai.openclawfoundation.app.watchkitapp`

137158

- `ai.openclawfoundation.app.watchkitapp.extension`

138159160+

Use `pnpm ios:release:signing:setup` for the initial portal setup, then `ASC_MATCH_PASSWORD=... pnpm ios:release:signing:sync:push` to publish encrypted signing assets to the shared private repo.

161+139162

4. Optional: set a custom official relay URL for the build. If unset, the release flow uses `https://ios-push-relay.openclaw.ai`.

140163141164

```bash

@@ -151,16 +174,19 @@ pnpm ios:version:pin -- --from-gateway

151174

6. Upload the build:

152175153176

```bash

154-

pnpm ios:release

177+

pnpm ios:release:upload

155178

```

156179157180

7. Expected behavior:

158181

- Fastlane reads `apps/ios/version.json`

159182

- verifies synced iOS versioning artifacts

160183

- resolves the next App Store Connect build number for that short version

184+

- generates deterministic App Store screenshots

185+

- uploads release notes and screenshots to the editable App Store version

161186

- generates `apps/ios/build/AppStoreRelease.xcconfig`

162187

- archives `OpenClaw`

163188

- uploads the IPA to App Store Connect for TestFlight/App Review use

189+

- leaves App Review submission for a maintainer to complete manually

164190165191

8. Expected outputs after a successful run:

166192

- `apps/ios/build/app-store/OpenClaw-<version>.ipa`

@@ -193,7 +219,7 @@ Recommended flow:

193219

1. Keep `apps/ios/version.json` pinned to the current train version.

194220

2. Update `apps/ios/CHANGELOG.md`, usually under `## Unreleased` while iterating.

195221

3. Run `pnpm ios:version:sync` after changelog changes.

196-

4. Upload more TestFlight builds with `pnpm ios:release`.

222+

4. Upload more TestFlight builds with `pnpm ios:release:upload`.

197223

5. Let Fastlane bump only the numeric build number.

198224199225

### Starting the next production release train