Skip to content

Commit

Permalink
fix: disable creating release page for rc candidates (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
dejanzele authored May 9, 2023
1 parent ed969c5 commit c62db77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ builds:

source:
enabled: true
name_template: '{{ .ProjectName }}_{{ replace .Version "-" "_" }}_source'
name_template: '{{ replace .ProjectName "-" "_" }}_{{ replace .Version "-" "_" }}_source'
format: "zip"

env:
Expand Down Expand Up @@ -91,7 +91,7 @@ sboms:
- artifacts: archive

release:
disable: "{{ .Env.FULL_RELEASE }}"
disable: "{{ if .Env.FULL_RELEASE }}false{{ else }}true{{ end }}"
header: |
## Armada Operator v{{ .Version }}
Expand Down

0 comments on commit c62db77

Please sign in to comment.