# 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 | "" |