forked from Layr-Labs/eigenlayer-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
37 lines (36 loc) · 846 Bytes
/
.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
# ref. https://goreleaser.com/customization/build/
builds:
- id: eigenlayer-cli
main: ./cmd/eigenlayer/main.go
binary: eigenlayer
flags:
- -v
# windows is ignored by default, as the `goos` field by default only
# contains linux and darwin
goos:
- linux
- darwin
goarch:
- amd64
- arm64
overrides:
- goos: linux
goarch: arm64
env:
- CC=aarch64-linux-gnu-gcc
- goos: darwin
goarch: arm64
env:
- CC=oa64-clang
- goos: darwin
goarch: amd64
goamd64: v1
env:
- CC=o64-clang
release:
# Repo in which the release will be created.
# Default is extracted from the origin remote URL or empty if its private hosted.
github:
owner: layr-labs
name: eigenlayer-cli
draft: true