From 3f384e7ef72cb52ac83efd1bc5f3bf96ad7c5d1a Mon Sep 17 00:00:00 2001 From: simulot Date: Mon, 7 Aug 2023 19:53:59 +0200 Subject: [PATCH] add goreleaser configuration --- .gitignore | 2 ++ .goreleaser.yaml | 45 +++++++++++++++++++++++++++++++++++++++++++++ go.mod | 6 ++---- 3 files changed, 49 insertions(+), 4 deletions(-) create mode 100644 .goreleaser.yaml diff --git a/.gitignore b/.gitignore index 37f74e15..c7c51776 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ immich-go .vscode/settings.json immich-go main.go + +dist/ diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 00000000..a65edfee --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,45 @@ +# This is an example .goreleaser.yml file with some sensible defaults. +# Make sure to check the documentation at https://goreleaser.com +before: + hooks: + # You may remove this if you don't use go modules. + - go mod tidy + # you may remove this if you don't need go generate + - go generate ./... +builds: + - env: + - CGO_ENABLED=0 + 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 +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' + +# The lines beneath this are called `modelines`. See `:help modeline` +# Feel free to remove those if you don't want/use them. +# yaml-language-server: $schema=https://goreleaser.com/static/schema.json +# vim: set ts=2 sw=2 tw=0 fo=cnqoj diff --git a/go.mod b/go.mod index 85478e54..a72e5461 100644 --- a/go.mod +++ b/go.mod @@ -4,11 +4,9 @@ go 1.20 require ( github.com/gabriel-vasile/mimetype v1.4.2 + github.com/google/uuid v1.3.0 github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd github.com/ttacon/chalk v0.0.0-20160626202418-22c06c80ed31 ) -require ( - github.com/google/uuid v1.3.0 // indirect - golang.org/x/net v0.12.0 // indirect -) +require golang.org/x/net v0.12.0 // indirect