gpd-release-flow▌
rudrankriyam/app-store-connect-cli-skills · updated Apr 8, 2026
Use this skill when you need to upload a build, publish to a track, or manage rollout.
Release flow (Google Play)
Use this skill when you need to upload a build, publish to a track, or manage rollout.
Preconditions
- Ensure credentials are set (
GPD_SERVICE_ACCOUNT_KEY). - Use a new version code for each upload.
- Always pass
--packageexplicitly.
Preferred end-to-end commands
Upload and release to a track
gpd publish upload app.aab --package com.example.app
gpd publish release --package com.example.app --track internal --status completed
Promote between tracks
gpd publish promote --package com.example.app --from-track beta --to-track production
Manual sequence with edit lifecycle
Use when you need precise control or multiple changes in one commit.
# 1. Create edit
EDIT_ID=$(gpd publish edit create --package com.example.app | jq -r '.data.editId')
# 2. Upload build without auto-commit
gpd publish upload app.aab --package com.example.app --edit-id $EDIT_ID --no-auto-commit
# 3. Configure release
gpd publish release --package com.example.app --track internal --status draft --edit-id $EDIT_ID
# 4. Validate and commit
gpd publish edit validate $EDIT_ID --package com.example.app
gpd publish edit commit $EDIT_ID --package com.example.app
Staged rollout
gpd publish release --package com.example.app --track production --status inProgress --version-code 123
gpd publish rollout --package com.example.app --track production --percentage 5
gpd publish rollout --package com.example.app --track production --percentage 50
gpd publish rollout --package com.example.app --track production --percentage 100
Halt or rollback
gpd publish halt --package com.example.app --track production --confirm
gpd publish rollback --package com.example.app --track production --confirm
Track status
gpd publish status --package com.example.app --track production
gpd publish tracks --package com.example.app
Notes
- Use
--status draftfirst for risky releases. - Use
--confirmonly after reviewinggpd publish statusoutput.
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.4★★★★★46 reviews- ★★★★★Yusuf Mensah· Dec 24, 2024
Useful defaults in gpd-release-flow — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Maya Choi· Dec 12, 2024
gpd-release-flow reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Yusuf Perez· Dec 12, 2024
gpd-release-flow is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Anika Brown· Dec 8, 2024
gpd-release-flow has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Tariq Zhang· Nov 27, 2024
gpd-release-flow fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Hiroshi Kapoor· Nov 15, 2024
Registry listing for gpd-release-flow matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Maya Thomas· Nov 3, 2024
I recommend gpd-release-flow for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Maya Verma· Oct 22, 2024
Useful defaults in gpd-release-flow — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Sophia Sharma· Oct 18, 2024
We added gpd-release-flow from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Camila Jackson· Oct 6, 2024
gpd-release-flow reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 46