diff --git a/.goreleaser-self.yaml b/.goreleaser-self.yaml index f5c16f59..80eab023 100644 --- a/.goreleaser-self.yaml +++ b/.goreleaser-self.yaml @@ -1,4 +1,3 @@ - # This is an example .goreleaser.yml file with some sensible defaults. # Make sure to check the documentation at https://goreleaser.com before: @@ -14,6 +13,9 @@ builds: goos: - linux - darwin + ignore: + - goos: linux + goarch: "386" binary: turso main: ./cmd/turso flags: @@ -33,23 +35,22 @@ archives: {{ .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 + - goos: windows + format: zip checksum: - name_template: 'checksums.txt' + name_template: "checksums.txt" snapshot: name_template: "{{ incpatch .Version }}-next" changelog: sort: asc filters: exclude: - - '^docs:' - - '^test:' + - "^docs:" + - "^test:" # The lines beneath this are called `modelines`. See `:help modeline` # Feel free to remove those if you don't want/use them. diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 8392ad4e..fee717d6 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,4 +1,3 @@ - # This is an example .goreleaser.yml file with some sensible defaults. # Make sure to check the documentation at https://goreleaser.com before: @@ -14,6 +13,9 @@ builds: goos: - linux - darwin + ignore: + - goos: linux + goarch: "386" binary: turso main: ./cmd/turso flags: @@ -33,23 +35,22 @@ archives: {{ .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 + - goos: windows + format: zip checksum: - name_template: 'checksums.txt' + name_template: "checksums.txt" snapshot: name_template: "{{ incpatch .Version }}-next" changelog: sort: asc filters: exclude: - - '^docs:' - - '^test:' + - "^docs:" + - "^test:" brews: - name: turso