Skip to content

Commit

Permalink
Merge pull request #58 from maxmind/ds/goreleaser-fix
Browse files Browse the repository at this point in the history
Remove deprecated property from goreleaser config
  • Loading branch information
WhoIsSethDaniel authored Jan 10, 2024
2 parents 9871ac7 + a072d40 commit 11aae75
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,15 @@ nfpms:
- 'deb'
- 'rpm'
bindir: '/usr/bin'
files:
'CHANGELOG.md': '/usr/share/doc/mmdbinspect/CHANGELOG.md'
'LICENSE-APACHE': '/usr/share/doc/mmdbinspect/LICENSE-APACHE'
'LICENSE-MIT': '/usr/share/doc/mmdbinspect/LICENSE-MIT'
'README.md': '/usr/share/doc/mmdbinspect/README.md'
contents:
- src: 'CHANGELOG.md'
dst: '/usr/share/doc/mmdbinspect/CHANGELOG.md'
- src: 'LICENSE-APACHE'
dst: '/usr/share/doc/mmdbinspect/LICENSE-APACHE'
- src: 'LICENSE-MIT'
dst: '/usr/share/doc/mmdbinspect/LICENSE-MIT'
- src: 'README.md'
dst: '/usr/share/doc/mmdbinspect/README.md'

release:
target_commitish: "{{ .FullCommit }}"

0 comments on commit 11aae75

Please sign in to comment.