{"id":24637998,"url":"https://github.com/upbound/action-up-project","last_synced_at":"2026-04-09T06:03:28.641Z","repository":{"id":268385973,"uuid":"901436841","full_name":"upbound/action-up-project","owner":"upbound","description":"GitHub Actions for Upbound projects","archived":false,"fork":false,"pushed_at":"2026-03-17T13:13:54.000Z","size":1519,"stargazers_count":1,"open_issues_count":3,"forks_count":2,"subscribers_count":13,"default_branch":"main","last_synced_at":"2026-03-18T03:47:53.550Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/upbound.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":"2024-12-10T16:50:33.000Z","updated_at":"2026-03-17T13:14:00.000Z","dependencies_parsed_at":"2024-12-16T13:23:57.961Z","dependency_job_id":"081ae5bd-000e-4a47-bff1-9b01b6565732","html_url":"https://github.com/upbound/action-up-project","commit_stats":null,"previous_names":["upbound/action-up-project"],"tags_count":5,"template":false,"template_full_name":"actions/typescript-action","purl":"pkg:github/upbound/action-up-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Faction-up-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Faction-up-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Faction-up-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Faction-up-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/upbound","download_url":"https://codeload.github.com/upbound/action-up-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Faction-up-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31588039,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-09T05:33:47.836Z","status":"ssl_error","status_checked_at":"2026-04-09T05:32:26.579Z","response_time":112,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-01-25T10:12:45.269Z","updated_at":"2026-04-09T06:03:28.630Z","avatar_url":"https://github.com/upbound.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Actions for Upbound - up project\n\nThis action is used to build Upbound projects and optionally push them to the\nUpbound Marketplace. It requires up to be installed (you can use\n[upbound/action-up](https://github.com/upbound/action-up) action)\n\n## Usage\n\nTo install the latest version of `up` and use it in GitHub Actions workflows,\n[create an Upbound API token](https://docs.upbound.io/all-spaces/spaces/console/#create-a-personal-access-token),\n[add it as a secret to your repository](https://docs.github.com/en/actions/security-for-github-actions/security-guides/using-secrets-in-github-actions#creating-encrypted-secrets-for-a-repository),\nand add the following step to your workflow:\n\n```yaml\n- name: Checkout Repository\n  uses: actions/checkout@v6\n\n- name: Install and login with up\n  uses: upbound/action-up@v1\n  with:\n    api-token: ${{ secrets.UP_API_TOKEN }}\n    organization: my-org\n\n- name: Build Upbound project\n  uses: upbound/action-up-project@v1\n```\n\n```yaml\n- name: Checkout Repository\n  uses: actions/checkout@v6\n\n- name: Install and login with up\n  uses: upbound/action-up@v1\n  with:\n    api-token: ${{ secrets.UP_API_TOKEN }}\n    organization: my-org\n\n- name: Build and Push Upbound project\n  uses: upbound/action-up-project@v1\n  with:\n    push-project: true\n```\n\n## Contributing\n\n\u003e [!NOTE]\n\u003e\n\u003e You'll need to have a reasonably modern version of\n\u003e [Node.js](https://nodejs.org) handy. If you are using a version manager like\n\u003e [`nodenv`](https://github.com/nodenv/nodenv) or\n\u003e [`nvm`](https://github.com/nvm-sh/nvm), you can run `nodenv install` in the\n\u003e root of your repository to install the version specified in\n\u003e [`package.json`](./package.json). Otherwise, 20.x or later should work!\n\n1. :hammer_and_wrench: Install the dependencies\n\n   ```bash\n   npm install\n   ```\n\n1. :building_construction: Package the JavaScript for distribution\n\n   ```bash\n   npm run bundle\n   ```\n\n1. :white_check_mark: Run the tests\n\n   ```bash\n   $ npm test\n   PASS  __tests__/main.test.js\n    action\n      ✓ installs the up cli successfully (2 ms)\n      ✓ installs the up cli without a v prefix (1 ms)\n\n   PASS  __tests__/index.test.js\n    index\n      ✓ calls run when imported (1 ms)\n   ...\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Faction-up-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fupbound%2Faction-up-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Faction-up-project/lists"}