feat: initial
This commit is contained in:
commit
f1cd1be14d
8 changed files with 444 additions and 0 deletions
29
README.md
Normal file
29
README.md
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# 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 | "" |
|
||||
Loading…
Add table
Add a link
Reference in a new issue