install-stackit-cli/README.md
Maximilian Jugl f1cd1be14d
Some checks failed
Test action / Test on registry.onstackit.cloud/devex-images/alpine:latest (push) Failing after 3s
Test action / Test on registry.onstackit.cloud/devex-images/ubuntu:act-latest (push) Successful in 34s
feat: initial
2026-04-22 09:36:58 +02:00

29 lines
1.1 KiB
Markdown

# Install STACKIT CLI Action
This GitHub Action installs the STACKIT CLI on a GitHub Actions runner. It is designed to be compatible with both Ubuntu (apt-get) and Alpine Linux (apk) environments.
## Usage
To use this action in your workflow, reference it as a step. You can optionally specify a version.
### Simple usage
```yaml
- name: Install STACKIT CLI
uses: https://stackit-solutions.git.onstackit.cloud/actions/install-stackit-cli@v1
```
### Usage with a specific version
```yaml
- name: Install STACKIT CLI
uses: https://stackit-solutions.git.onstackit.cloud/actions/install-stackit-cli@v1
with:
version: "v0.61.0"
```
## Inputs
| Name | Description | Required | Default |
| ------- | --------------------------------------------------------------------------------------------------------------------------- | -------- | ------- |
| version | The specific version of STACKIT CLI to install (e.g., v0.61.0). If left empty, the latest stable version will be installed. | No | "" |