{"id":50384900,"url":"https://github.com/vertz-dev/setup-vtz","last_synced_at":"2026-05-30T14:30:27.892Z","repository":{"id":350732676,"uuid":"1207301759","full_name":"vertz-dev/setup-vtz","owner":"vertz-dev","description":"GitHub Action to install the vtz runtime","archived":false,"fork":false,"pushed_at":"2026-04-11T19:04:13.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-11T21:08:01.387Z","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/vertz-dev.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":"2026-04-10T19:44:11.000Z","updated_at":"2026-04-11T19:04:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vertz-dev/setup-vtz","commit_stats":null,"previous_names":["vertz-dev/setup-vtz"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vertz-dev/setup-vtz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertz-dev%2Fsetup-vtz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertz-dev%2Fsetup-vtz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertz-dev%2Fsetup-vtz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertz-dev%2Fsetup-vtz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vertz-dev","download_url":"https://codeload.github.com/vertz-dev/setup-vtz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertz-dev%2Fsetup-vtz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33696681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"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":[],"created_at":"2026-05-30T14:30:27.170Z","updated_at":"2026-05-30T14:30:27.885Z","avatar_url":"https://github.com/vertz-dev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# setup-vtz\n\nGitHub Action to install the [vtz](https://github.com/vertz-dev/vertz) runtime binary.\n\n## Usage\n\n```yaml\nsteps:\n  - uses: actions/checkout@v4\n  - uses: vertz-dev/setup-vtz@v1\n  - run: vtz --version\n```\n\n### Inputs\n\n| Input | Description | Default |\n|-------|-------------|---------|\n| `version` | vtz version to install. `\"auto\"` reads from `version.txt` in the repo root. | `auto` |\n| `cache` | Enable `actions/cache` for `.pipe/cache` directory. | `true` |\n\n### Outputs\n\n| Output | Description |\n|--------|-------------|\n| `version` | The vtz version that was installed. |\n| `cache-hit` | Whether the cache was restored (`true`/`false`). |\n\n## Examples\n\n### Auto-detect version from `version.txt`\n\n```yaml\n- uses: vertz-dev/setup-vtz@v1\n- run: vtz --version\n```\n\n### Pin to a specific version\n\n```yaml\n- uses: vertz-dev/setup-vtz@v1\n  with:\n    version: '0.2.57'\n```\n\n### Disable cache\n\n```yaml\n- uses: vertz-dev/setup-vtz@v1\n  with:\n    cache: false\n```\n\n### Full CI workflow (Vertz monorepo)\n\n```yaml\njobs:\n  build-test:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: oven-sh/setup-bun@v2\n        with:\n          bun-version: 1.3.9\n      - run: bun install --frozen-lockfile\n      - uses: vertz-dev/setup-vtz@v1\n\n      # Monorepo-specific: build @vertz/ci for ci.config.ts\n      - run: cd packages/ci \u0026\u0026 bun run build\n\n      - run: vtz ci build-typecheck --concurrency 2\n      - run: vtz ci test --concurrency 2\n```\n\n## Platform Support\n\n| Runner | Architecture | Status |\n|--------|-------------|--------|\n| `ubuntu-latest` | x64 | Supported |\n| `ubuntu-latest` (ARM) | arm64 | Supported |\n| `macos-14` | arm64 | Supported |\n| `macos-13` | x64 | Supported |\n\n## How it Works\n\n1. Resolves the version from `version.txt` (or the `version` input)\n2. Maps `runner.os`/`runner.arch` to the correct `@vertz/runtime-{os}-{arch}` npm package\n3. Downloads and extracts the binary via `npm pack`\n4. Adds the binary to `$GITHUB_PATH`\n5. Verifies the installed version matches the expected version\n6. Optionally restores `.pipe/cache` via `actions/cache`\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvertz-dev%2Fsetup-vtz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvertz-dev%2Fsetup-vtz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvertz-dev%2Fsetup-vtz/lists"}