{"id":19764497,"url":"https://github.com/hostwithquantum/setup-quantum-cli","last_synced_at":"2026-04-01T18:40:36.580Z","repository":{"id":232355788,"uuid":"784134157","full_name":"hostwithquantum/setup-quantum-cli","owner":"hostwithquantum","description":"A Github Action to deploy to Planetary Quantum's Docker platform.","archived":false,"fork":false,"pushed_at":"2026-03-28T21:58:41.000Z","size":19,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-28T22:27:35.867Z","etag":null,"topics":["deployment","deployment-automation","docker","docker-swarm","planetary-quantum"],"latest_commit_sha":null,"homepage":"https://cli.planetary-quantum.com","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hostwithquantum.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-04-09T08:53:40.000Z","updated_at":"2026-03-19T15:54:28.000Z","dependencies_parsed_at":"2024-04-09T10:28:10.774Z","dependency_job_id":"5903c0ba-83cf-45a7-9844-81dbe5f0afd8","html_url":"https://github.com/hostwithquantum/setup-quantum-cli","commit_stats":null,"previous_names":["hostwithquantum/setup-quantum-cli"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/hostwithquantum/setup-quantum-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hostwithquantum%2Fsetup-quantum-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hostwithquantum%2Fsetup-quantum-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hostwithquantum%2Fsetup-quantum-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hostwithquantum%2Fsetup-quantum-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hostwithquantum","download_url":"https://codeload.github.com/hostwithquantum/setup-quantum-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hostwithquantum%2Fsetup-quantum-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"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":["deployment","deployment-automation","docker","docker-swarm","planetary-quantum"],"created_at":"2024-11-12T04:14:00.042Z","updated_at":"2026-04-01T18:40:36.576Z","avatar_url":"https://github.com/hostwithquantum.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# setup-quantum-cli\n\n[![CI](https://github.com/hostwithquantum/setup-quantum-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/hostwithquantum/setup-quantum-cli/actions/workflows/ci.yml)\n[![GitHub Action](https://img.shields.io/badge/GitHub-Action-blue?logo=github)](https://github.com/hostwithquantum/setup-quantum-cli)\n[![License: MPL 2.0](https://img.shields.io/badge/License-MPL_2.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)\n\nA GitHub Action to install and configure [`quantum-cli`](https://cli.planetary-quantum.com) for use in your CI/CD workflows. This action downloads the CLI, adds it to your PATH, and sets up authentication automatically.\n\n## Prerequisites\n\n- A [Planetary Quantum](https://www.planetary-quantum.com/) account with valid credentials\n\n## Supported platforms\n\n| OS | Architecture |\n|----|--------------|\n| Linux | amd64, arm64 |\n| macOS | amd64, arm64 |\n| Windows | amd64, arm64 |\n\n## Inputs\n\nYou should provide an `api-key`, but it's optional.\n\n| Input | Description |  |\n|-------|-------------|----------|\n| `api-key` | Your Quantum API key | optional, adds the key to the environment |\n| `version` | The version | optional, defaults to latest |\n| `enable-cache` | Cache quantum-cli endpoint data between runs | optional, defaults to `true` |\n\n## Usage\n\nFor detailed documentation on the `quantum-cli`, please refer to our [docs](https://docs.planetary-quantum.com/).\n\n### Quickstart\n\n```yaml\nsteps:\n  - uses: hostwithquantum/setup-quantum-cli@v2\n    with:\n      api-key: ${{ secrets.QUANTUM_API_KEY }}\n  - run: quantum-cli auth status\n```\n\n### Full workflow example\n\n```yaml\nname: Deploy\n\non:\n  push:\n    branches: [main]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: hostwithquantum/setup-quantum-cli@v2\n        with:\n          api-key: ${{ secrets.QUANTUM_API_KEY }}\n      - run: quantum-cli auth status\n      - run: quantum-cli stack deploy\n        env:\n          QUANTUM_ENDPOINT: my-cluster\n          QUANTUM_STACK: my-app\n```\n\n### Windows example\n\n```yaml\njobs:\n  deploy:\n    runs-on: windows-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: hostwithquantum/setup-quantum-cli@v2\n        with:\n          api-key: ${{ secrets.QUANTUM_API_KEY }}\n      - run: quantum-cli.exe auth status\n```\n\n## Environment variables\n\nThe action sets the following environment variables for subsequent steps:\n\nWhen using API key:\n- `QUANTUM_API_KEY` — your API key\n\n## Dependencies\n\n- `bash`\n- `curl`\n- `sha256sum`\n- `actions/cache`\n\n## License\n\nMPL-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhostwithquantum%2Fsetup-quantum-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhostwithquantum%2Fsetup-quantum-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhostwithquantum%2Fsetup-quantum-cli/lists"}