mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 10:05:19 +00:00
cec46716b6
Sometimes we want people to test features in PRs and not everyone is used to using git, build go and docker. This commit builds docker containers and pushes them to GHCR (not dockerhub) for testing on pushes to branches that has open pull requests to main using Ko. This is configured to mimic the debug images produced by goreleaser. Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
17 lines
362 B
YAML
17 lines
362 B
YAML
defaultBaseImage: gcr.io/distroless/base-debian12:debug
|
|
defaultPlatforms:
|
|
- linux/arm64
|
|
- linux/arm/v7
|
|
- linux/amd64
|
|
- linux/386
|
|
|
|
builds:
|
|
- id: headscale
|
|
main: ./cmd/headscale
|
|
env:
|
|
- CGO_ENABLED=0
|
|
flags:
|
|
- -mod=readonly
|
|
ldflags:
|
|
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Git.ShortCommit}}
|