Skip to content

Commit

Permalink
specified appropriate goos, goarch, and goarm for goreleaser dockers
Browse files Browse the repository at this point in the history
  • Loading branch information
Kardbord committed Apr 10, 2022
1 parent 39752e6 commit 1e4e189
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ dockers:
- "tkvarfordt/kardbot:{{ .Tag }}-arm64"
- "ghcr.io/tannerkvarfordt/kard-bot:{{ .Tag }}-arm64"
- "ghcr.io/tannerkvarfordt/kard-bot:latest-arm64"
goos: linux
goarch: arm64
use: buildx
dockerfile: Dockerfile
build_flag_templates:
Expand All @@ -86,6 +88,8 @@ dockers:
- "tkvarfordt/kardbot:{{ .Tag }}-amd64"
- "ghcr.io/tannerkvarfordt/kard-bot:{{ .Tag }}-amd64"
- "ghcr.io/tannerkvarfordt/kard-bot:latest-amd64"
goos: linux
goarch: amd64
use: buildx
dockerfile: Dockerfile
build_flag_templates:
Expand All @@ -108,6 +112,9 @@ dockers:
- "tkvarfordt/kardbot:{{ .Tag }}-armv7"
- "ghcr.io/tannerkvarfordt/kard-bot:{{ .Tag }}-armv7"
- "ghcr.io/tannerkvarfordt/kard-bot:latest-armv7"
goos: linux
goarch: arm
goarm: "7"
use: buildx
dockerfile: Dockerfile
build_flag_templates:
Expand All @@ -130,6 +137,9 @@ dockers:
- "tkvarfordt/kardbot:{{ .Tag }}-armv6"
- "ghcr.io/tannerkvarfordt/kard-bot:{{ .Tag }}-armv6"
- "ghcr.io/tannerkvarfordt/kard-bot:latest-armv6"
goos: linux
goarch: arm
goarm: "6"
use: buildx
dockerfile: Dockerfile
build_flag_templates:
Expand Down

0 comments on commit 1e4e189

Please sign in to comment.