We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 992fae7 commit 0c89b32Copy full SHA for 0c89b32
.github/workflows/ci.yaml
@@ -18,7 +18,14 @@ jobs:
18
with:
19
go-version: ${{ matrix.go-version }}
20
- name: Install STACKIT CLI
21
- uses: jkroepke/setup-stackit-cli@v1
+ run: >-
22
+ OS=$(uname | tr '[:upper:]' '[:lower:]')
23
+ ARCH=$(uname -m)
24
+
25
+ [ "$ARCH" = "x86_64" ] && ARCH=amd64
26
+ [ "$ARCH" = "aarch64" ] && ARCH=amd64
27
28
+ curl -sSfLo - https://github.com/stackitcloud/stackit-cli/releases/download/v0.31.0/stackit-cli_0.31.0_${OS}_${ARCH}.tar.gz | sudo tar zxvf - -C /usr/local/bin/ stackit
29
- name: Test
30
run: make test
31
0 commit comments