{"id":15590739,"url":"https://github.com/timrogers/build-raycast-extension","last_synced_at":"2026-03-18T22:36:48.326Z","repository":{"id":65155747,"uuid":"490373787","full_name":"timrogers/build-raycast-extension","owner":"timrogers","description":"A GitHub action which ensures that a Raycast extension can be built successfully","archived":false,"fork":false,"pushed_at":"2023-06-04T15:10:19.000Z","size":8,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-14T13:15:42.436Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/timrogers.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2022-05-09T17:05:08.000Z","updated_at":"2024-01-05T07:45:40.000Z","dependencies_parsed_at":"2024-11-24T13:51:22.435Z","dependency_job_id":null,"html_url":"https://github.com/timrogers/build-raycast-extension","commit_stats":{"total_commits":4,"total_committers":1,"mean_commits":4.0,"dds":0.0,"last_synced_commit":"41033889edfe69361de8d470ec7f4cb381efe6b7"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timrogers%2Fbuild-raycast-extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timrogers%2Fbuild-raycast-extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timrogers%2Fbuild-raycast-extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timrogers%2Fbuild-raycast-extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timrogers","download_url":"https://codeload.github.com/timrogers/build-raycast-extension/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244181353,"owners_count":20411601,"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":[],"created_at":"2024-10-02T23:28:19.165Z","updated_at":"2026-01-04T05:08:06.029Z","avatar_url":"https://github.com/timrogers.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build Raycast Extension\n\nThis simple __GitHub Action__ builds and (optionally!) lints a [custom extension](https://github.com/raycast/extensions) for [Raycast](https://raycast.com/), making sure that it passes Raycast's basic checks and is ready to publish.\n\n## Getting started\n\nCreate a `.github/workflows/build.yml` file in your repo with the following contents:\n\n```yaml\nname: Build Raycast extension\n\non:\n  - push\n\njobs:\n  build:\n    # We use the `macos-latest` GitHub Actions runner, because Raycast's `ray` CLI only works on macOS.\n    runs-on: macos-latest\n    steps:\n      - uses: actions/checkout@v2\n      # You don't have to specify any options here, although there are some non-mandatory options - see below!\n      - uses: timrogers/build-raycast-extension@1.0.0\n```\n\nCommit this to `main`, and your Raycast extension will be automatically built and linted whenever you push to GitHub.\n\n## Options\n\n| Name           | Description                                                                                                                                                                                                                                                                                                                        | Required | Default |\n|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|---------|\n| extension_path | The relative path within your repo where the Raycast extension is located. We will expect `package.json` and `package-lock.json` files to be found here. This is useful if you have multiple extensions in one repo - for example if you're using Raycast for Teams (\u003chttps://developers.raycast.com/teams-beta/getting-started\u003e). | false    | .       |\n| lint           | Whether the code should be linted to check its style and formatting.                                                                                                                                                                                                                                                               | false    | true    |\n\nYou can set options using `with:`, like follows:\n\n```yaml\nname: Build Raycast extension\n\non:\n  - push\n\njobs:\n  build:\n    runs-on: macos-latest\n    steps:\n      - uses: actions/checkout@v2\n      - uses: timrogers/build-raycast-extension@v1.0.0\n        with:\n          extension_path: my_second_extension\n```\n\n## Limitations\n\nThis action does not allow you to log in to your Raycast developer account, so some linting checks are skipped (namely making sure that you have access to the `owner` team, if you're building for Raycast for Teams (\u003chttps://developers.raycast.com/teams-beta/getting-started\u003e).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimrogers%2Fbuild-raycast-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimrogers%2Fbuild-raycast-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimrogers%2Fbuild-raycast-extension/lists"}