{"id":28152688,"url":"https://github.com/lando/notarize-action","last_synced_at":"2025-05-15T05:11:56.953Z","repository":{"id":157347457,"uuid":"633423166","full_name":"lando/notarize-action","owner":"lando","description":"A GitHub action to Apple notarize files. Originally adapted from https://github.com/devbotsxyz/xcode-notarize","archived":false,"fork":false,"pushed_at":"2024-06-21T01:18:51.000Z","size":514,"stargazers_count":8,"open_issues_count":5,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-05-06T22:08:42.732Z","etag":null,"topics":["actions","github-actions","lando"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lando.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["lando","pirog"],"patreon":"devwithlando","open_collective":"devwithlando","custom":"https://lando.dev/join"}},"created_at":"2023-04-27T13:16:16.000Z","updated_at":"2024-12-27T14:49:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"dc4fd6ff-4dec-4f19-90e4-2050931152a0","html_url":"https://github.com/lando/notarize-action","commit_stats":{"total_commits":25,"total_committers":4,"mean_commits":6.25,"dds":0.56,"last_synced_commit":"bd2f055b8685623053d14594e9c5742c912befaf"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fnotarize-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fnotarize-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fnotarize-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fnotarize-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lando","download_url":"https://codeload.github.com/lando/notarize-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254276451,"owners_count":22043869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["actions","github-actions","lando"],"created_at":"2025-05-15T05:11:56.879Z","updated_at":"2025-05-15T05:11:56.945Z","avatar_url":"https://github.com/lando.png","language":"JavaScript","funding_links":["https://github.com/sponsors/lando","https://github.com/sponsors/pirog","https://patreon.com/devwithlando","https://opencollective.com/devwithlando","https://lando.dev/join"],"categories":[],"sub_categories":[],"readme":"# Notarize Action\n\nThis action Apple-notarizes macOS applications or plug-ins. It does this by submitting your built `.app` (or non-app bundle) to Apple's notarization service.\n\nIt uses `notarytool` by default but can be configured to use `altool`. In the case of the latter it will poll the notarization service until it times out or receives a success response.\n\n\u003e **NOTE:** Originally forked from https://github.com/devbotsxyz/xcode-notarize\n\n## Required Inputs\n\nThese keys must be set correctly for the action to work.\n\n| Name | Description | Example Value |\n|---|---|---|\n| `product-path` | The path to the product to notarize.  | `/dist/MyApp.app` |\n| `appstore-connect-username` | The AppStore Connect username. | `${{ secrets.NOTARIZATION_USERNAME }}` |\n| `appstore-connect-password` | The AppStore Connect password. | `${{ secrets.NOTARIZATION_PASSWORD }}` |\n| `appstore-connect-team-id` | The AppStore Connect team id. Only required when using `notarytool`. | `FY8GAUX283` |\n\n## Optional Inputs\n\nThese keys are set to sane defaults but can be modified as needed.\n\n| Name | Description | Default | Example |\n|---|---|---|---|\n| `appstore-connect-api-key` | The AppStore Connect API Key. | `null` | `${{ secrets.NOTARIZATION_API_KEY }}` |\n| `appstore-connect-api-issuer` | The AppStore Connect API Issuer. | `null` | `${{ secrets.NOTARIZATION_API_ISSUER }}` |\n| `primary-bundle-id` | A unique identifier that identifies this product notarization. | bundle identifier of the app you are uploading. | `dev.lando.my-app` |\n| `tool` | The `xcrun` notarization tool to use. | `notarytool` | `altool` |\n| `verbose` | Verbose mode will print Notarization API responses. | `false` | `true` |\n\n##  Usage\n\n### Basic Usage\n\n```yaml\n- name: Notarize Release Build\n  uses: lando/notarize-action@v2\n  with:\n    product-path: \"/dist/MyApp.app\"\n    appstore-connect-username: ${{ secrets.NOTARIZATION_USERNAME }}\n    appstore-connect-password: ${{ secrets.NOTARIZATION_PASSWORD }}\n    appstore-connect-team-id: FY8GAUX283\n```\n\nNote that notarization is not the final step. After Apple has notarized your application, you also want to _staple_ a notarization ticket to your product.\n\nThis can be done with the [Xcode Staple](https://github.com/marketplace/actions/xcode-staple) action.\n\n## Changelog\n\nWe try to log all changes big and small in both [THE CHANGELOG](https://github.com/lando/notarize-action/blob/main/CHANGELOG.md) and the [release notes](https://github.com/lando/notarize-action/releases).\n\n## Releasing\n\nCreate a release and publish to [GitHub Actions Marketplace](https://docs.github.com/en/enterprise-cloud@latest/actions/creating-actions/publishing-actions-in-github-marketplace). Note that the release tag must be a [semantic version](https://semver.org/).\n\n## Maintainers\n\n* [@pirog](https://github.com/pirog)\n* [@reynoldsalec](https://github.com/reynoldsalec)\n\n## Contributors\n\n\u003ca href=\"https://github.com/lando/notarize-action/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=lando/notarize-action\" /\u003e\n\u003c/a\u003e\n\nMade with [contrib.rocks](https://contrib.rocks).\n\n## Other Resources\n\n* [Important advice](https://www.youtube.com/watch?v=WA4iX5D9Z64)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flando%2Fnotarize-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flando%2Fnotarize-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flando%2Fnotarize-action/lists"}