appstore-archive-uploader
SolidManage Xcode version/build numbers, archive, export, upload, and publish IPA/PKG artifacts with `asc xcode` helpers before TestFlight or App Store submission.
AI & Automation 8 stars
0 forks Updated today MIT
Install
Quality Score: 78/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# App Store Archive Uploader
Prefer `asc xcode archive` and `asc xcode export` over raw `xcodebuild` when they fit.
## Preconditions
Xcode/CLT installed; signing identity/profiles or automatic signing available; ASC auth configured for upload/build lookup.
## Version And Build
```bash
asc xcode version view
asc xcode version edit --version "1.3.0" --build-number "42"
asc xcode version bump --type build
asc xcode version bump --type patch
asc builds next-build-number --app "APP_ID" --version "1.2.3" --platform IOS --output json
asc xcode version edit --build-number "NEXT_BUILD"
```
Use `--project-dir`, `--project`, and `--target` for multi-project/target determinism.
## iOS/tvOS/visionOS
```bash
asc xcode archive --workspace "App.xcworkspace" --scheme "App" --configuration Release \
--clean --archive-path ".asc/artifacts/App.xcarchive" \
--xcodebuild-flag=-destination --xcodebuild-flag=generic/platform=iOS --output json
asc xcode export --archive-path ".asc/artifacts/App.xcarchive" \
--export-options "ExportOptions.plist" --ipa-path ".asc/artifacts/App.ipa" \
--xcodebuild-flag=-allowProvisioningUpdates --output json
```
Use `--project "App.xcodeproj"` for project-only apps. Add `--wait` to export/upload/publish when the next step depends on processed builds.
Upload/distribute:
```bash
asc builds upload --app "APP_ID" --ipa ".asc/artifacts/App.ipa" --wait
asc publish testflight --app "APP_ID" --ipa ".asc/artifacts/App.ipa" --group "GROUP_ID" --wait
asc publi...
Details
- Author
- Xopoko
- Repository
- Xopoko/plug-n-skills
- Created
- 1 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
appstore-screenshot-pipeline
Orchestrate iOS screenshot automation with xcodebuild/simctl, AXe plans, Koubou framing, review artifacts, and `asc screenshots` upload.
8 Updated today
Xopoko AI & Automation Solid
appstore-connect-cli
Use `asc` CLI for App Store Connect command discovery, auth, output formats, pagination, schemas, canonical verbs, Apple Ads, and timeout behavior.
8 Updated today
Xopoko AI & Automation Listed
appstore-build-monitor
Track build processing, find latest builds, and clean up old builds with asc. Use when managing build retention or waiting on processing.
8 Updated today
Xopoko