-
Notifications
You must be signed in to change notification settings - Fork 2
/
.goreleaser.yml
63 lines (59 loc) · 1.8 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
version: 2
project_name: e-shop-fiber-microservice-boilerplate
builds:
- id: binary-build # ID of the build
main: ./cmd/main.go # Path to main.go file or main package
binary: app # Binary name
# Custom ldflags
ldflags:
- -s -w -X main.version={{.Version}}
# Custom environment variables to be set during the builds
env:
- CGO_ENABLED=0
# GOOS list to build for
goos:
- linux
- darwin
- windows
# GOARCH to build for
goarch:
- amd64
- arm64
dockers:
- goos: linux
goarch: amd64
use: buildx
ids:
- binary-build
image_templates:
- "WildEgor/e-shop-fiber-microservice-boilerplate:latest-amd64"
- "WildEgor/e-shop-fiber-microservice-boilerplate:{{.Tag}}-amd64"
build_flag_templates:
- "--platform=linux/amd64"
dockerfile: Dockerfile.goreleaser
# You can add extra pre-existing files to the upload
extra_files:
- assets
- goos: linux
goarch: arm64
use: buildx
ids:
- binary-build
image_templates:
- "WildEgor/e-shop-fiber-microservice-boilerplate:latest-arm64v8"
- "WildEgor/e-shop-fiber-microservice-boilerplate:{{.Tag}}-arm64v8"
build_flag_templates:
- "--platform=linux/arm64/v8"
dockerfile: Dockerfile.goreleaser
extra_files:
- assets
docker_manifests:
- name_template: WildEgor/e-shop-fiber-microservice-boilerplate:latest
image_templates:
- "WildEgor/e-shop-fiber-microservice-boilerplate:latest-amd64"
- "WildEgor/e-shop-fiber-microservice-boilerplate:latest-arm64v8"
- name_template: WildEgor/e-shop-fiber-microservice-boilerplate:{{.Tag}}
image_templates:
- "WildEgor/e-shop-fiber-microservice-boilerplate:{{.Tag}}-amd64"
- "WildEgor/e-shop-fiber-microservice-boilerplate:{{.Tag}}-arm64v8"