File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ ifndef GORELEASER_CURRENT_TAG
8
8
export GORELEASER_CURRENT_TAG =$(GIT_TAG )
9
9
endif
10
10
11
+ .PHONY : docker-buildx
12
+ docker-buildx :
13
+ docker-buildx :
14
+ docker buildx create --use --name=caren --platform=linux/arm64,linux/amd64 || true
15
+
11
16
.PHONY : build-snapshot
12
17
build-snapshot : # # Builds a snapshot with goreleaser
13
18
build-snapshot : go-generate ; $(info $(M ) building snapshot $* )
@@ -30,7 +35,7 @@ release: go-generate ; $(info $(M) building release $*)
30
35
31
36
.PHONY : release-snapshot
32
37
release-snapshot : # # Builds a snapshot release with goreleaser
33
- release-snapshot : go-generate ; $(info $(M ) building snapshot release $* )
38
+ release-snapshot : docker-buildx go-generate ; $(info $(M ) building snapshot release $* )
34
39
goreleaser --verbose=$(GORELEASER_VERBOSE ) \
35
40
release \
36
41
--snapshot \
You can’t perform that action at this time.
0 commit comments