Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ builds:
- cmd: sh -c 'go run main.go completion bash > ./dist/completions/stackit.bash'
- cmd: sh -c 'go run main.go completion fish > ./dist/completions/stackit.fish'

- id: freebsd-builds
env:
- CGO_ENABLED=0
goos:
- freebsd
goarch:
- arm64
- amd64
binary: "stackit"

archives:
- id: windows-archives
ids:
Expand All @@ -61,6 +71,7 @@ archives:
- ids:
- linux-builds
- macos-builds
- freebsd-builds
formats: [ 'tar.gz' ]
files:
- src: ./dist/completions/*
Expand Down
18 changes: 18 additions & 0 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,24 @@ You can also get the STACKIT CLI by compiling it from source or downloading a pr
go run . <GROUP> <SUB-GROUP> <COMMAND> <ARGUMENT> <FLAGS>
```

### FreeBSD

The STACKIT CLI can be installed through the [FreeBSD ports or packages](https://docs.freebsd.org/en/books/handbook/ports/).

To install the port:

```shell
cd /usr/ports/sysutils/stackit/ && make install clean
```

To add the package, run one of these commands:

```shell
pkg install sysutils/stackit
# OR
pkg install stackit
```

### Pre-compiled binary

1. Download the binary corresponding to your operating system and CPU architecture from our [Releases](https://github.com/stackitcloud/stackit-cli/releases) page
Expand Down
Loading