File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 5
5
* .deb
6
6
* .rpm
7
7
test
8
-
8
+ .DS_Store
Original file line number Diff line number Diff line change @@ -295,6 +295,7 @@ builds:
295
295
- -s -w -X github.com/cloudflare/cfssl/cli/version.version={{.Version}}
296
296
archives :
297
297
- format : binary
298
+ allow_different_binary_count : true # https://github.com/goreleaser/goreleaser/pull/1841
298
299
release :
299
300
github :
300
301
owner : cloudflare
Original file line number Diff line number Diff line change @@ -57,7 +57,13 @@ snapshot:
57
57
.PHONY : github-release
58
58
github-release :
59
59
@:$(call check_defined, GITHUB_TOKEN)
60
- docker run -e GITHUB_TOKEN=$(GITHUB_TOKEN ) --rm -v $(PWD ) :/workdir -w /workdir cbroglie/goreleaser-cgo:1.12.12-musl goreleaser --rm-dist
60
+
61
+ docker run --rm --privileged \
62
+ -e GITHUB_TOKEN=$(GITHUB_TOKEN) \
63
+ -v $(PWD ) :/cross \
64
+ -v /var/run/docker.sock :/var/run/docker.sock \
65
+ -w /cross \
66
+ ghcr.io/gythialy/golang-cross :v1.18 --rm-dist
61
67
62
68
.PHONY : docker-build
63
69
docker-build :
You can’t perform that action at this time.
0 commit comments