app-store-deployment

仓库创建 2025年11月8日最近提交 29 天前SkillHot 收录 22 天前
▸ 精选理由

详尽命令与流程,适合准备正式发版与 CI/CD 的移动开发者

▸ 风险提示

涉及签名证书与私钥管理,注意凭据安全

这个 Skill 做什么

指导 iOS 与 Google Play 的打包、签名与自动化发布流程

覆盖把移动应用发布到 iOS App Store 和 Google Play 的全流程:打包、签名、版本管理到自动化发布与 CI/CD。当准备发版、配置签名证书或要搭建自动化流水线时会用到。优势是把繁琐的签名、证书、导出和上传步骤连成可复用的自动化流程,减少人为出错。

▸ 展开 SKILL.md 英文原文

Publishes mobile applications to iOS App Store and Google Play with code signing, versioning, and CI/CD automation. Use when preparing app releases, configuring signing certificates, or setting up automated deployment pipelines.

开发编程发布iOSAndroidCI/CD通用
180
Stars
28
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/app-store-deployment/skills/app-store-deployment/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/app-store-deployment/skills/app-store-deployment/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# App Store Deployment

Publish mobile applications to iOS App Store and Google Play with proper procedures.

## iOS Deployment

### Build and Archive
```bash
# Build archive
xcodebuild -workspace App.xcworkspace \
  -scheme App \
  -sdk iphoneos \
  -configuration Release \
  -archivePath build/App.xcarchive \
  archive

# Export IPA
xcodebuild -exportArchive \
  -archivePath build/App.xcarchive \
  -exportOptionsPlist ExportOptions.plist \
  -exportPath build/
```

### Upload to App Store Connect
```bash
xcrun altool --upload-app \
  --type ios \
  --file build/App.ipa \
  --username "$APPLE_ID" \
  --password "$APP_SPECIFIC_PASSWORD"
```

## Android Deployment

### Build Release APK/Bundl
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有