113 lines
3.8 KiB
YAML
113 lines
3.8 KiB
YAML
version: 2
|
|
|
|
builds:
|
|
- main: ./shoutrrr/main.go
|
|
binary: shoutrrr/shoutrrr
|
|
goos:
|
|
- linux
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
- "386"
|
|
- arm
|
|
- arm64
|
|
ldflags:
|
|
- -s -w
|
|
- -X github.com/nicholas-fedor/shoutrrr/internal/meta.Version={{ .Version }}
|
|
- -X github.com/nicholas-fedor/shoutrrr/internal/meta.Commit={{.Commit}}
|
|
- -X github.com/nicholas-fedor/shoutrrr/internal/meta.Date={{.Date}}
|
|
|
|
archives:
|
|
- id: default # Unique ID for this archive configuration
|
|
name_template: >-
|
|
{{- .ProjectName }}_
|
|
{{- if eq .Os "darwin" }}macOS
|
|
{{- else }}{{ .Os }}{{ end }}_
|
|
{{- if eq .Arch "amd64" }}amd64
|
|
{{- else if eq .Arch "386" }}i386
|
|
{{- else if eq .Arch "arm" }}armhf
|
|
{{- else if eq .Arch "arm64" }}arm64v8
|
|
{{- else }}{{ .Arch }}{{ end }}_
|
|
{{- .Version -}}
|
|
files:
|
|
- LICENSE.md
|
|
builds:
|
|
- shoutrrr
|
|
formats: ["tar.gz"]
|
|
- id: windows
|
|
name_template: >-
|
|
{{- .ProjectName }}_
|
|
{{- .Os }}_
|
|
{{- if eq .Arch "amd64" }}amd64
|
|
{{- else if eq .Arch "386" }}i386
|
|
{{- else if eq .Arch "arm" }}armhf
|
|
{{- else if eq .Arch "arm64" }}arm64v8
|
|
{{- else }}{{ .Arch }}{{ end }}_
|
|
{{- .Version -}}
|
|
files:
|
|
- LICENSE.md
|
|
builds:
|
|
- shoutrrr
|
|
formats: ["zip"]
|
|
|
|
dockers:
|
|
- use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--label=org.opencontainers.image.created={{ .Date }}"
|
|
- "--label=org.opencontainers.image.version={{ .Version }}"
|
|
- "--label=org.opencontainers.image.revision={{ .FullCommit }}"
|
|
goos: linux
|
|
goarch: amd64
|
|
goarm: ""
|
|
dockerfile: dockerfiles/Dockerfile
|
|
image_templates:
|
|
- nickfedor/shoutrrr:amd64-{{ .Version }}
|
|
- nickfedor/shoutrrr:amd64-latest
|
|
- ghcr.io/nicholas-fedor/shoutrrr:amd64-{{ .Version }}
|
|
- ghcr.io/nicholas-fedor/shoutrrr:amd64-latest
|
|
- use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/i386"
|
|
- "--label=org.opencontainers.image.created={{ .Date }}"
|
|
- "--label=org.opencontainers.image.version={{ .Version }}"
|
|
- "--label=org.opencontainers.image.revision={{ .FullCommit }}"
|
|
goos: linux
|
|
goarch: "386"
|
|
goarm: ""
|
|
dockerfile: dockerfiles/Dockerfile
|
|
image_templates:
|
|
- nickfedor/shoutrrr:i386-{{ .Version }}
|
|
- nickfedor/shoutrrr:i386-{{ if .IsSnapshot }}latest-dev{{ else }}latest{{ end }}
|
|
- ghcr.io/nicholas-fedor/shoutrrr:i386-{{ .Version }}
|
|
- ghcr.io/nicholas-fedor/shoutrrr:i386-{{ if .IsSnapshot }}latest-dev{{ else }}latest{{ end }}
|
|
- use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/arm/v6"
|
|
- "--label=org.opencontainers.image.created={{ .Date }}"
|
|
- "--label=org.opencontainers.image.version={{ .Version }}"
|
|
- "--label=org.opencontainers.image.revision={{ .FullCommit }}"
|
|
goos: linux
|
|
goarch: arm
|
|
goarm: 6
|
|
dockerfile: dockerfiles/Dockerfile
|
|
image_templates:
|
|
- nickfedor/shoutrrr:armhf-{{ .Version }}
|
|
- nickfedor/shoutrrr:armhf-{{ if .IsSnapshot }}latest-dev{{ else }}latest{{ end }}
|
|
- ghcr.io/nicholas-fedor/shoutrrr:armhf-{{ .Version }}
|
|
- ghcr.io/nicholas-fedor/shoutrrr:armhf-{{ if .IsSnapshot }}latest-dev{{ else }}latest{{ end }}
|
|
- use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64/v8"
|
|
- "--label=org.opencontainers.image.created={{ .Date }}"
|
|
- "--label=org.opencontainers.image.version={{ .Version }}"
|
|
- "--label=org.opencontainers.image.revision={{ .FullCommit }}"
|
|
goos: linux
|
|
goarch: arm64
|
|
goarm: ""
|
|
dockerfile: dockerfiles/Dockerfile
|
|
image_templates:
|
|
- nickfedor/shoutrrr:arm64v8-{{ .Version }}
|
|
- nickfedor/shoutrrr:arm64v8-latest
|
|
- ghcr.io/nicholas-fedor/shoutrrr:arm64v8-{{ .Version }}
|
|
- ghcr.io/nicholas-fedor/shoutrrr:arm64v8-{{ if .IsSnapshot }}latest-dev{{ else }}latest{{ end }}
|