Skip to content

Commit 03f9fe9

Browse files
committed
chore: update goreleaser configuration
1 parent a5f4bc6 commit 03f9fe9

File tree

2 files changed

+10
-17
lines changed

2 files changed

+10
-17
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Both will install as `./bin/misspell`. You can adjust the download location usi
1919
If you use [Go](https://golang.org/), the best way to run `misspell` is by using [gometalinter](#gometalinter). Otherwise, install `misspell` the old-fashioned way:
2020

2121
```
22-
go get -u github.com/client9/misspell/cmd/misspell
22+
go install github.com/client9/misspell/cmd/misspell@latest
2323
```
2424

2525
and misspell will be in your `GOPATH`

goreleaser.yml

+9-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# goreleaser.yml
2-
# https://github.com/goreleaser/goreleaser
3-
41
project_name: misspell
52

63
builds:
@@ -14,22 +11,18 @@ builds:
1411
- windows
1512
goarch:
1613
- amd64
14+
- arm64
1715
env:
1816
- CGO_ENABLED=0
19-
ignore:
20-
- goos: darwin
21-
goarch: 386
22-
- goos: windows
23-
goarch: 386
2417

25-
archive:
26-
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
27-
replacements:
28-
amd64: 64bit
29-
386: 32bit
30-
darwin: mac
31-
files:
32-
- none*
18+
archives:
19+
- name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
20+
replacements:
21+
amd64: 64bit
22+
386: 32bit
23+
darwin: mac
24+
files:
25+
- LICENSE
3326

3427
checksum:
3528
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"

0 commit comments

Comments
 (0)