{"id":27610640,"url":"https://github.com/callstackincubator/ios","last_synced_at":"2026-01-21T07:26:13.886Z","repository":{"id":282917546,"uuid":"950077502","full_name":"callstackincubator/ios","owner":"callstackincubator","description":"GitHub Action for remote build cache for iOS with Rock","archived":false,"fork":false,"pushed_at":"2025-12-16T15:54:26.000Z","size":113,"stargazers_count":6,"open_issues_count":2,"forks_count":7,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-12-20T06:56:43.568Z","etag":null,"topics":["react-native"],"latest_commit_sha":null,"homepage":"https://rockjs.dev","language":null,"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/callstackincubator.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":"2025-03-17T15:41:17.000Z","updated_at":"2025-12-20T04:01:21.000Z","dependencies_parsed_at":"2025-03-17T17:24:27.521Z","dependency_job_id":"fbfd3ce8-7afc-40d9-ab2c-30015d75ac03","html_url":"https://github.com/callstackincubator/ios","commit_stats":null,"previous_names":["callstackincubator/ios"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/callstackincubator/ios","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callstackincubator%2Fios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callstackincubator%2Fios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callstackincubator%2Fios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callstackincubator%2Fios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/callstackincubator","download_url":"https://codeload.github.com/callstackincubator/ios/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callstackincubator%2Fios/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28629915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["react-native"],"created_at":"2025-04-22T23:29:51.580Z","updated_at":"2026-01-21T07:26:13.879Z","avatar_url":"https://github.com/callstackincubator.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rock iOS GitHub Action\n\nThis GitHub Action enables remote building of iOS applications using [Rock](https://rockjs.dev). It supports both simulator and device builds, with automatic artifact caching and code signing capabilities.\n\n## Features\n\n- Build iOS apps for simulator or device\n- Automatic artifact caching to speed up builds\n- Code signing support for device builds\n- Support for additional provisioning profiles (extensions, notifications, etc.)\n- Re-signing capability for PR builds\n- Native fingerprint-based caching\n- Configurable build parameters\n\n## Usage\n\n```yaml\nname: iOS Build\non:\n  push:\n    branches: [main]\n  pull_request:\n    branches: ['**']\n\njobs:\n  build:\n    runs-on: macos-latest\n    steps:\n      - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n      - name: Build iOS\n        uses: callstackincubator/ios@v3 # replace with latest commit hash\n        with:\n          destination: 'simulator' # or 'device'\n          scheme: 'YourScheme'\n          configuration: 'Debug'\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          # For device builds, add these (for certificate and provisioning profile - either file OR base64):\n          # certificate-file: './certs/distribution.p12'\n          # certificate-base64: ${{ secrets.CERTIFICATE_BASE64 }}\n          # certificate-password: ${{ secrets.CERTIFICATE_PASSWORD }} # Optional - only needed if P12 has a password\n          # keychain-password: ${{ secrets.KEYCHAIN_PASSWORD }} # Optional - defaults to auto-generated password\n          # re-sign: true\n          # ad-hoc: true\n          # For apps that require provisioning profiles:\n          # provisioning-profiles: |\n          #   [\n          #     {\n          #       \"name\": \"NewApp_AdHoc\",\n          #       \"file\": \"./profiles/new-app-profile.mobileprovision\"\n          #     },\n          #     {\n          #       \"name\": \"ShareExtension\",\n          #       \"file\": \"./profiles/share-extension.mobileprovision\"\n          #     },\n          #     {\n          #       \"name\": \"NotificationExtension\",\n          #       \"base64\": \"${{ secrets.NOTIFICATION_PROFILE_BASE64 }}\"\n          #     }\n          #   ]\n```\n\n## Inputs\n\n| Input                         | Description                                                                                                                       | Required | Default     |\n| ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |\n| `github-token`                | GitHub Token                                                                                                                      | Yes      | -           |\n| `working-directory`           | Working directory for the build command                                                                                           | No       | `.`         |\n| `destination`                 | Build destination: \"simulator\" or \"device\"                                                                                        | Yes      | `simulator` |\n| `scheme`                      | Xcode scheme                                                                                                                      | Yes      | -           |\n| `configuration`               | Xcode configuration                                                                                                               | Yes      | -           |\n| `re-sign`                     | Re-sign the app bundle with new JS bundle                                                                                         | No       | `false`     |\n| `ad-hoc`                      | Upload the IPA for ad-hoc distribution to easily install on provisioned devices                                                   | No       | `false`     |\n| `certificate-base64`          | Base64 encoded P12 file for device builds                                                                                         | No       | -           |\n| `certificate-file`            | P12 file for device builds                                                                                                        | No       | -           |\n| `certificate-password`        | Password for the P12 file (optional - only needed if certificate has a password)                                                  | No       | -           |\n| `provisioning-profile-base64` | Base64 encoded provisioning profile                                                                                               | No       | -           |\n| `provisioning-profile-file`   | Provisioning profile file                                                                                                         | No       | -           |\n| `provisioning-profile-name`   | Name of the provisioning profile                                                                                                  | No       | -           |\n| `provisioning-profiles`       | JSON array of provisioning profiles. Supports passing PP as both file and base64 string. Supported keys: `name`, `file`, `base64` | No       | -           |\n| `keychain-password`           | Password for temporary keychain (optional - defaults to auto-generated password)                                                  | No       | -           |\n| `rock-build-extra-params`     | Extra parameters for rock build:ios                                                                                               | No       | -           |\n| `comment-bot`                 | Whether to comment PR with build link                                                                                             | No       | `true`      |\n\n## Outputs\n\n| Output         | Description               |\n| -------------- | ------------------------- |\n| `artifact-url` | URL of the build artifact |\n| `artifact-id`  | ID of the build artifact  |\n\n## Prerequisites\n\n- macOS runner\n- Rock CLI installed in your project\n- For device builds:\n  - Valid Apple Developer certificate\n  - Valid provisioning profile\n  - Proper code signing setup\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallstackincubator%2Fios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcallstackincubator%2Fios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallstackincubator%2Fios/lists"}