{"id":48068482,"url":"https://github.com/corva-ai/app-deployer","last_synced_at":"2026-04-04T14:38:21.017Z","repository":{"id":46731471,"uuid":"358278817","full_name":"corva-ai/app-deployer","owner":"corva-ai","description":"GitHub Action to deploy Corva Apps to Dev Center","archived":false,"fork":false,"pushed_at":"2026-04-01T23:50:47.000Z","size":13887,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":7,"default_branch":"develop","last_synced_at":"2026-04-02T11:34:18.499Z","etag":null,"topics":["devops","nodejs"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/corva-ai.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":"2021-04-15T13:59:32.000Z","updated_at":"2024-11-01T10:33:10.000Z","dependencies_parsed_at":"2024-08-12T12:50:13.406Z","dependency_job_id":"06094a60-e78e-4370-859c-26e5226b1cdb","html_url":"https://github.com/corva-ai/app-deployer","commit_stats":{"total_commits":64,"total_committers":4,"mean_commits":16.0,"dds":0.203125,"last_synced_commit":"96afab04025ca25d4afc7b28c461e0f47e8c4002"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/corva-ai/app-deployer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corva-ai%2Fapp-deployer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corva-ai%2Fapp-deployer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corva-ai%2Fapp-deployer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corva-ai%2Fapp-deployer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/corva-ai","download_url":"https://codeload.github.com/corva-ai/app-deployer/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corva-ai%2Fapp-deployer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31403130,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: 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":["devops","nodejs"],"created_at":"2026-04-04T14:38:20.944Z","updated_at":"2026-04-04T14:38:21.001Z","avatar_url":"https://github.com/corva-ai.png","language":"TypeScript","readme":"# app-deployer\n\nGitHub Action to deploy Corva Apps to Dev Center\n\nBased on https://github.com/actions/typescript-action\n\n## Code in Main\n\n\u003e First, you'll need to have a reasonably modern version of `node` handy. This won't work with versions older than 9, for instance.\n\nInstall the dependencies  \n```bash\n$ npm ci\n```\n\nBuild the typescript and package it for distribution\n```bash\n$ npm run build \u0026\u0026 npm run package\n```\n\nRun the tests :heavy_check_mark:  \n```bash\n$ npm test\n\n PASS  ./index.test.js\n  ✓ throws invalid number (3ms)\n  ✓ wait 500 ms (504ms)\n  ✓ test runs (95ms)\n\n...\n```\n\n## Change action.yml\n\nThe action.yml defines the inputs and output for your action.\n\nUpdate the action.yml with your name, description, inputs and outputs for your action.\n\nSee the [documentation](https://help.github.com/en/articles/metadata-syntax-for-github-actions)\n\n## Change the Code\n\nMost toolkit and CI/CD operations involve async operations so the action is run in an async function.\n\n```javascript\nimport * as core from '@actions/core';\n...\n\nasync function run() {\n  try { \n      ...\n  } \n  catch (error) {\n    core.setFailed(error.message);\n  }\n}\n\nrun()\n```\n\nSee the [toolkit documentation](https://github.com/actions/toolkit/blob/master/README.md#packages) for the various packages.\n\n## Publish to a distribution branch\n\nActions are run from GitHub repos so we will checkin the packed dist folder. \n\nThen run [ncc](https://github.com/zeit/ncc) and push the results:\n```bash\n$ npm run package\n$ git add dist\n$ git commit -a -m \"prod dependencies\"\n$ git push origin releases/v1\n```\n\nNote: We recommend using the `--license` option for ncc, which will create a license file for all of the production node modules used in your project.\n\nYour action is now published! :rocket: \n\nSee the [versioning documentation](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md)\n\n## Validate\n\nYou can now validate the action by referencing `./` in a workflow in your repo (see [test.yml](.github/workflows/test.yml))\n\n```yaml\nuses: ./\nwith:\n  milliseconds: 1000\n```\n\nSee the [actions tab](https://github.com/actions/typescript-action/actions) for runs of this action! :rocket:\n\n## Usage:\n\nAfter testing you can [create a v1 tag](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md) to reference the stable and latest V1 action\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorva-ai%2Fapp-deployer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorva-ai%2Fapp-deployer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorva-ai%2Fapp-deployer/lists"}