Skip to content

Commit

Permalink
Merge pull request #83 from 0xPolygon/v0.0.3-goreleaser-config
Browse files Browse the repository at this point in the history
add goreleaser config
  • Loading branch information
christophercampbell authored Apr 19, 2024
2 parents 2d3a1ef + daf2c03 commit d434d66
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# .goreleaser.yaml
project_name: cdk-data-availability

release:
disable: false
draft: true
prerelease: auto

before:
hooks:
- go mod download
- go install github.com/gobuffalo/packr/v2/[email protected]
- packr2

builds:
- main: ./cmd/
binary: cdk-data-availability
goos:
- linux
- darwin
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
ldflags:
- -s -w
- -X github.com/0xPolygon/cdk-data-availability.Version={{ .Version }}
- -X github.com/0xPolygon/cdk-data-availability.GitRev={{ .Commit }}
- -X github.com/0xPolygon/cdk-data-availability.BuildDate={{ .Date }}
- -X github.com/0xPolygon/cdk-data-availability.GitBranch={{ .Branch }}

archives:
- files:
- LICENSE
- README.md

dockers:
- image_templates:
- 0xpolygon/{{ .ProjectName }}:{{ replace .Version "+" "-" }}-amd64
dockerfile: Dockerfile.release
use: buildx
goos: linux
goarch: amd64
build_flag_templates:
- --platform=linux/amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/{{ .ProjectName }}
- --label=org.opencontainers.image.source=https://github.com/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ replace .Version "+" "-" }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
skip_push: false

- image_templates:
- 0xpolygon/{{ .ProjectName }}:{{ replace .Version "+" "-" }}-arm64
dockerfile: Dockerfile.release
use: buildx
goos: linux
goarch: arm64
build_flag_templates:
- --platform=linux/arm64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/{{ .ProjectName }}
- --label=org.opencontainers.image.source=https://github.com/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ replace .Version "+" "-" }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
skip_push: false

docker_manifests:
- name_template: 0xpolygon/{{ .ProjectName }}:{{ replace .Version "+" "-" }}
image_templates:
- 0xpolygon/{{ .ProjectName }}:{{ replace .Version "+" "-" }}-amd64
- 0xpolygon/{{ .ProjectName }}:{{ replace .Version "+" "-" }}-arm64
skip_push: false

- name_template: 0xpolygon/{{ .ProjectName }}:latest
image_templates:
- 0xpolygon/{{ .ProjectName }}:{{ replace .Version "+" "-" }}-amd64
- 0xpolygon/{{ .ProjectName }}:{{ replace .Version "+" "-" }}-arm64
skip_push: false

0 comments on commit d434d66

Please sign in to comment.