{"id":47816591,"url":"https://github.com/rudrankriyam/asc-orb","last_synced_at":"2026-04-03T18:44:10.648Z","repository":{"id":339874548,"uuid":"1163674653","full_name":"rudrankriyam/asc-orb","owner":"rudrankriyam","description":"Official CircleCI Orb for asc (App Store Connect CLI): install asc, set up secure App Store Connect API auth, and automate iOS/TestFlight CI/CD workflows.","archived":false,"fork":false,"pushed_at":"2026-02-22T01:20:49.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-29T17:04:08.555Z","etag":null,"topics":["app-store-connect","app-store-connect-api","app-store-connect-cli","apple-developer","automation","ci-cd","circleci","circleci-orb","circleci-orbs","ios","mobile-devops","testflight"],"latest_commit_sha":null,"homepage":"https://circleci.com/developer/orbs/orb/rudrankriyam/asc","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rudrankriyam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-22T01:01:02.000Z","updated_at":"2026-02-22T01:19:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rudrankriyam/asc-orb","commit_stats":null,"previous_names":["rudrankriyam/asc-orb"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rudrankriyam/asc-orb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudrankriyam%2Fasc-orb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudrankriyam%2Fasc-orb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudrankriyam%2Fasc-orb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudrankriyam%2Fasc-orb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rudrankriyam","download_url":"https://codeload.github.com/rudrankriyam/asc-orb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudrankriyam%2Fasc-orb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31370203,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["app-store-connect","app-store-connect-api","app-store-connect-cli","apple-developer","automation","ci-cd","circleci","circleci-orb","circleci-orbs","ios","mobile-devops","testflight"],"created_at":"2026-04-03T18:44:09.904Z","updated_at":"2026-04-03T18:44:10.644Z","avatar_url":"https://github.com/rudrankriyam.png","language":"Shell","readme":"# asc CircleCI Orb\n\n[![CircleCI Build Status](https://circleci.com/gh/rudrankriyam/asc-orb.svg?style=shield)](https://circleci.com/gh/rudrankriyam/asc-orb)\n[![CircleCI Orb Version](https://badges.circleci.com/orbs/rudrankriyam/asc.svg)](https://circleci.com/developer/orbs/orb/rudrankriyam/asc)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)\n\nOfficial CircleCI Orb for `asc` (App Store Connect CLI), published as\n`rudrankriyam/asc`.\n\nUse this orb to install `asc`, configure secure App Store Connect API\nauthentication, and automate iOS/TestFlight release workflows in CircleCI.\n\n## Why use this orb\n\n- Optimized installer for `asc` release binaries (`latest` or pinned version)\n- Secure auth setup using CircleCI `env_var_name` parameters\n- Reusable commands for App Store Connect automation in CI/CD\n- Works in Linux and macOS CircleCI executors\n\n## Quick start\n\n```yaml\nversion: 2.1\n\norbs:\n  asc: rudrankriyam/asc@x.y.z\n\njobs:\n  appstore-check:\n    docker:\n      - image: cimg/base:stable\n    steps:\n      - asc/install:\n          version: latest\n      - asc/run:\n          command: asc --help\n\nworkflows:\n  main:\n    jobs:\n      - appstore-check\n```\n\n## Commands and jobs\n\n- `install`: Install `asc` from GitHub release assets\n- `setup-auth`: Export `asc` authentication environment variables\n- `run`: Execute a provided `asc` command string\n- `smoke` job: Install `asc` and run no-side-effect smoke checks\n\n## Security model\n\n- Sensitive values are passed by env var name, not inline secrets\n- `setup-auth` writes exported values to `BASH_ENV` for subsequent steps\n- Optional checksum verification is supported in `install`\n\n## Usage examples\n\n- [Install only](./src/examples/install.yml)\n- [Setup auth + run command](./src/examples/setup-and-run.yml)\n- [End-to-end smoke workflow](./src/examples/end-to-end.yml)\n- [macOS executor example](./src/examples/macos-install.yml)\n\n## Resources\n\n- Orb Registry: https://circleci.com/developer/orbs/orb/rudrankriyam/asc\n- CircleCI orb docs: https://circleci.com/docs/orbs/author/orb-concepts\n- asc CLI: https://github.com/rudrankriyam/App-Store-Connect-CLI\n\n## Local development\n\nPrerequisite: CircleCI CLI\n\n```bash\ncircleci config pack src \u003e orb.yml\ncircleci orb validate orb.yml\n```\n\n## Publishing\n\n- Dev orb publishes from non-`main` branches\n- Production publishes only on semver tags (`vX.Y.Z`)\n- CircleCI context `circleci-orb-publishing` must provide publishing token\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frudrankriyam%2Fasc-orb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frudrankriyam%2Fasc-orb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frudrankriyam%2Fasc-orb/lists"}