{"id":16327353,"url":"https://github.com/bryopsida/node-sea-action","last_synced_at":"2025-08-31T22:13:24.499Z","repository":{"id":234812792,"uuid":"789549834","full_name":"bryopsida/node-sea-action","owner":"bryopsida","description":"An action to generate a single executable application using Node.JS 20+","archived":false,"fork":false,"pushed_at":"2025-08-22T23:07:48.000Z","size":570,"stargazers_count":3,"open_issues_count":5,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-23T01:28:27.700Z","etag":null,"topics":["github-action","nodejs","sea","single-executable-application"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/bryopsida.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}},"created_at":"2024-04-20T21:34:28.000Z","updated_at":"2025-08-14T17:05:46.000Z","dependencies_parsed_at":"2024-06-11T11:13:46.539Z","dependency_job_id":"c0d22bc3-91e7-45da-b0e3-0ac9737e93bc","html_url":"https://github.com/bryopsida/node-sea-action","commit_stats":null,"previous_names":["bryopsida/node-sea-action"],"tags_count":1,"template":false,"template_full_name":"actions/javascript-action","purl":"pkg:github/bryopsida/node-sea-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-sea-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-sea-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-sea-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-sea-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bryopsida","download_url":"https://codeload.github.com/bryopsida/node-sea-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryopsida%2Fnode-sea-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273047140,"owners_count":25036299,"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","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["github-action","nodejs","sea","single-executable-application"],"created_at":"2024-10-10T23:11:11.735Z","updated_at":"2025-08-31T22:13:24.465Z","avatar_url":"https://github.com/bryopsida.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Node.js SEA (Single Executable Application) Action\n\n[![GitHub Super-Linter](https://github.com/bryopsida/node-sea-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter)\n![CI](https://github.com/bryopsida/node-sea-action/actions/workflows/ci.yml/badge.svg)\n\n## What does this do?\n\nThis action takes a bundled JS file and creates a Node.js SEA.\n\n## What does this not do?\n\n- Bundle your JS, you need to bundle your application into a single js file with\n  something like esbuild\n- Support importing/requiring npm modules, everything needs to be baked into the\n  bundle, you can include additional assets available through the SEA API but\n  thats it.\n- Sign Code, it takes the steps to strip the original Node.js signature to give\n  a blank canvas for signing but leaves code signing, if needed, to you.\n- Cross Compilation, the SEA generated will match the arch of the GitHub runner,\n  if you need arm64, you'll need to run the action on a arm64 runner.\n\n## Usage\n\nTo include the action in a workflow in another repository, you can use the\n`uses` syntax with the `@` symbol to reference a specific branch, tag, or commit\nhash.\n\n```yaml\nsea-action:\n  name: Build SEA\n  strategy:\n    matrix:\n      os: [ubuntu-latest]\n  runs-on: ${{ matrix.os }}\n  steps:\n    - name: Checkout\n      id: checkout\n      uses: actions/checkout@v4\n\n    - name: Setup Node.js\n      id: setup-node\n      uses: actions/setup-node@v4\n      with:\n        node-version-file: .node-version\n        cache: npm\n\n    - name: Find Node\n      id: find-node\n      run:\n        echo \"node=$(node -e 'console.log(process.argv[0]);')\" \u003e\u003e\n        $env:GITHUB_OUTPUT\n\n    - name: SEA\n      id: sea\n      uses: bryopsida/node-sea-action@v1\n      with:\n        working-dir: .\n        output-dir: build\n        executable-name: sea\n        sea-config-path: test-app/sea-config.json\n        node-path: ${{ steps.find-node.outputs.node }}\n\n    - uses: actions/upload-artifact@v4\n      with:\n        name: ${{ matrix.os }}-sea\n        path: build/\n        if-no-files-found: error\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryopsida%2Fnode-sea-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbryopsida%2Fnode-sea-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryopsida%2Fnode-sea-action/lists"}