summaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/a-h/templ/.goreleaser.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/a-h/templ/.goreleaser.yaml')
-rw-r--r--vendor/github.com/a-h/templ/.goreleaser.yaml72
1 files changed, 0 insertions, 72 deletions
diff --git a/vendor/github.com/a-h/templ/.goreleaser.yaml b/vendor/github.com/a-h/templ/.goreleaser.yaml
deleted file mode 100644
index 456187c..0000000
--- a/vendor/github.com/a-h/templ/.goreleaser.yaml
+++ /dev/null
@@ -1,72 +0,0 @@
-builds:
- - env:
- - CGO_ENABLED=0
- dir: cmd/templ
- mod_timestamp: '{{ .CommitTimestamp }}'
- flags:
- - -trimpath
- ldflags:
- - -s -w
- goos:
- - linux
- - windows
- - darwin
-
-checksum:
- name_template: 'checksums.txt'
-
-signs:
- - id: checksums
- cmd: cosign
- stdin: '{{ .Env.COSIGN_PASSWORD }}'
- output: true
- artifacts: checksum
- args:
- - sign-blob
- - --yes
- - --key
- - env://COSIGN_PRIVATE_KEY
- - '--output-certificate=${certificate}'
- - '--output-signature=${signature}'
- - '${artifact}'
-
-archives:
- - format: tar.gz
- name_template: >-
- {{ .ProjectName }}_
- {{- title .Os }}_
- {{- if eq .Arch "amd64" }}x86_64
- {{- else if eq .Arch "386" }}i386
- {{- else }}{{ .Arch }}{{ end }}
- {{- if .Arm }}v{{ .Arm }}{{ end }}
-
-kos:
- - repository: ghcr.io/a-h/templ
- platforms:
- - linux/amd64
- - linux/arm64
- tags:
- - latest
- - '{{.Tag}}'
- bare: true
-
-docker_signs:
- - cmd: cosign
- artifacts: all
- output: true
- args:
- - sign
- - --yes
- - --key
- - env://COSIGN_PRIVATE_KEY
- - '${artifact}'
-
-snapshot:
- name_template: "{{ incpatch .Version }}-next"
-
-changelog:
- sort: asc
- filters:
- exclude:
- - '^docs:'
- - '^test:'