Skip to content

Commit

Permalink
undo goreleaser changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kannon92 committed Jul 25, 2023
1 parent 308cf03 commit 8daba46
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ builds:
id: server
binary: server
main: ./cmd/armada/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -41,7 +41,7 @@ builds:
id: executor
binary: executor
main: ./cmd/executor/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -50,7 +50,7 @@ builds:
id: binoculars
binary: binoculars
main: ./cmd/binoculars/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -59,7 +59,7 @@ builds:
id: lookout
binary: lookout
main: ./cmd/lookout/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -68,7 +68,7 @@ builds:
id: lookoutv2
binary: lookoutv2
main: ./cmd/lookoutv2/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -77,7 +77,7 @@ builds:
id: lookoutingester
binary: lookoutingester
main: ./cmd/lookoutingester/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -86,7 +86,7 @@ builds:
id: lookoutingesterv2
binary: lookoutingesterv2
main: ./cmd/lookoutingesterv2/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -95,7 +95,7 @@ builds:
id: eventingester
binary: eventingester
main: ./cmd/eventingester/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -104,7 +104,7 @@ builds:
id: scheduler
binary: scheduler
main: ./cmd/scheduler/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -113,7 +113,7 @@ builds:
id: scheduleringester
binary: scheduleringester
main: ./cmd/scheduleringester/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -122,7 +122,7 @@ builds:
id: jobservice
binary: jobservice
main: ./cmd/jobservice/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -131,7 +131,7 @@ builds:
id: fakeexecutor
binary: fakeexecutor
main: ./cmd/fakeexecutor/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- linux
goarch:
Expand All @@ -140,7 +140,7 @@ builds:
id: armadactl
binary: armadactl
main: ./cmd/armadactl/main.go
mod_timestamp: "{{ .CommitTimestamp }}"
mod_timestamp: '{{ .CommitTimestamp }}'
goos:
- windows
- darwin
Expand Down Expand Up @@ -170,7 +170,7 @@ archives:
universal_binaries:
- replace: true
id: armadactl
name_template: "armadactl"
name_template: 'armadactl'

sboms:
- artifacts: archive
Expand All @@ -196,7 +196,7 @@ dockers:
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.base.name=alpine:3.18.2.0
- --label=org.opencontainers.image.base.name=alpine:3.17.0
- --label=org.opencontainers.image.base.digest=c0d488a800e4
- --label=org.opencontainers.image.licenses=Apache-2.0
- --label=org.opencontainers.image.vendor=G-Research
Expand Down Expand Up @@ -473,27 +473,28 @@ dockers:
dockerfile: ./build_goreleaser/armadactl/Dockerfile

changelog:
use: github
use:
github
sort: asc
abbrev: 0
groups: # Regex use RE2 syntax as defined here: https://github.com/google/re2/wiki/Syntax.
- title: "Features"
- title: 'Features'
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 100
- title: "Bug fixes"
- title: 'Bug fixes'
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 200
- title: "Documentation"
- title: 'Documentation'
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
order: 300
- title: "Dependency updates"
- title: 'Dependency updates'
regexp: '^.*?(feat|fix|chore)\(deps?.+\)!?:.+$'
order: 400
- title: "Other work"
- title: 'Other work'
order: 999
filters:
exclude:
- "^test:"
- '^test:'
- '^.*?Bump(\([[:word:]]+\))?.+$'

checksum:
Expand Down

0 comments on commit 8daba46

Please sign in to comment.