mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-12 23:13:45 +00:00
chore: include boot files in the release
This commit is contained in:
parent
499b893728
commit
ac4a3d4ba1
1 changed files with 18 additions and 3 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
version: 1
|
version: 1
|
||||||
|
|
||||||
|
project_name: mev-commit-geth
|
||||||
|
|
||||||
builds:
|
builds:
|
||||||
- env:
|
- env:
|
||||||
- CGO_ENABLED=0
|
- CGO_ENABLED=0
|
||||||
|
|
@ -17,7 +19,7 @@ builds:
|
||||||
goarch: arm64
|
goarch: arm64
|
||||||
dir: ./external/geth
|
dir: ./external/geth
|
||||||
main: ./cmd/geth
|
main: ./cmd/geth
|
||||||
binary: mev-commit-geth
|
binary: "{{ .ProjectName }}"
|
||||||
|
|
||||||
archives:
|
archives:
|
||||||
- format: tar.gz
|
- format: tar.gz
|
||||||
|
|
@ -30,15 +32,28 @@ archives:
|
||||||
{{- if eq .Arch "amd64" }}x86_64
|
{{- if eq .Arch "amd64" }}x86_64
|
||||||
{{- else if eq .Arch "386" }}i386
|
{{- else if eq .Arch "386" }}i386
|
||||||
{{- else }}{{ .Arch }}
|
{{- else }}{{ .Arch }}
|
||||||
{{ end }}
|
{{- end }}
|
||||||
{{- if .Arm }}v{{ .Arm }}{{ end }}
|
{{- if .Arm }}v{{ .Arm }}{{ end }}
|
||||||
format_overrides:
|
format_overrides:
|
||||||
- goos: windows
|
- goos: windows
|
||||||
format: zip
|
format: zip
|
||||||
|
files:
|
||||||
|
- src: ./external/geth/geth-poa/entrypoint.sh
|
||||||
|
dst: ./
|
||||||
|
strip_parent: true
|
||||||
|
- src: ./external/geth/geth-poa/genesis.json
|
||||||
|
dst: ./
|
||||||
|
strip_parent: true
|
||||||
|
- src: ./external/geth/geth-poa/util/deploy_create2.sh
|
||||||
|
dst: ./
|
||||||
|
strip_parent: true
|
||||||
|
- src: ./external/geth/geth-poa/signer-node*/**/*
|
||||||
|
dst: ./
|
||||||
|
strip_parent: false
|
||||||
|
|
||||||
checksum:
|
checksum:
|
||||||
name_template: >-
|
name_template: >-
|
||||||
mev-commit-geth_
|
{{ .ProjectName }}_
|
||||||
{{- if .IsSnapshot }}{{ .ShortCommit }}
|
{{- if .IsSnapshot }}{{ .ShortCommit }}
|
||||||
{{- else }}{{ .Version }}
|
{{- else }}{{ .Version }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue