Skip to content

Commit

Permalink
fix: fix goreleaser update to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
muhlba91 committed Jun 11, 2024
1 parent 1ba105a commit c97dd5e
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
version: 2
archives:
- id: archive
name_template: '{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}'
name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
before:
hooks:
- make tfgen
Expand All @@ -27,37 +28,37 @@ signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
certificate: '${artifact}.pem'
certificate: "${artifact}.pem"
args:
- sign-blob
- --yes
- '--output-certificate=${certificate}'
- '--bundle=${signature}'
- '${artifact}'
- "--output-certificate=${certificate}"
- "--bundle=${signature}"
- "${artifact}"
artifacts: all
output: true
sboms:
- artifacts: archive
- id: source
artifacts: source
changelog:
skip: true
disable: true
use: github
filters:
exclude:
- '^docs'
- '^chore'
groups:
- title: 'New Features'
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bugfixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 10
- title: Other Work
- "^docs"
- "^chore"
groups:
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: "Bugfixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 10
- title: Other Work
order: 999
release:
disable: false
prerelease: auto
snapshot:
name_template: '{{ .Tag }}-SNAPSHOT'
name_template: "{{ .Tag }}-SNAPSHOT"

0 comments on commit c97dd5e

Please sign in to comment.