
Gpd Release Flow
- 33 installs
- 6 repo stars
- Updated July 3, 2026
- rudrankriyam/gpd-cli-skills
Helps with ai & agent building tasks.
About
gpd-release-flow is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- gpd-release-flow
- AI & Agent Building
- AI-coding skill
Gpd Release Flow by the numbers
- 33 all-time installs (skills.sh)
- Ranked #8,968 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rudrankriyam/gpd-cli-skills --skill gpd-release-flowAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 33 |
|---|---|
| repo stars | ★ 6 |
| Last updated | July 3, 2026 |
| Repository | rudrankriyam/gpd-cli-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
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 completedPromote between tracks
gpd publish promote --package com.example.app --from-track beta --to-track productionManual 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.appStaged 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 100Halt or rollback
gpd publish halt --package com.example.app --track production --confirm
gpd publish rollback --package com.example.app --track production --confirmTrack status
gpd publish status --package com.example.app --track production
gpd publish tracks --package com.example.appNotes
- Use
--status draftfirst for risky releases. - Use
--confirmonly after reviewinggpd publish statusoutput.
Related skills
AI & Agent Buildingagents