mirror of
https://github.com/apricote/hcloud-upload-image.git
synced 2026-01-13 13:21:01 +00:00
38 lines
904 B
YAML
38 lines
904 B
YAML
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
|
|
|
|
version: 1
|
|
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- -X {{ .ModulePath }}/internal/version.version={{ .Version }}
|
|
- -X {{ .ModulePath }}/internal/version.versionPrerelease=
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
|
|
archives:
|
|
- format: tar.gz
|
|
# this name template makes the OS and Arch compatible with the results of `uname`.
|
|
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 }}
|
|
# use zip for windows archives
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
|
|
snapshot:
|
|
name_template: "{{ .Version }}-dev+{{ .ShortCommit }}"
|
|
|
|
changelog:
|
|
# Generated by release-please
|
|
disable: true
|
|
|
|
|