-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
39 lines (39 loc) · 862 Bytes
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
build:
main: main.go
binary: create-project
ldflags: -s -w -X main.version={{.Version}}
goos:
- darwin
- linux
goarch:
- 386
- amd64
- arm
- arm64
ignore:
- goos: darwin
goarch: 386
archive:
name_template: '{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
format: tar.gz
files:
- license
- readme.md
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
release:
github:
owner: frozzare
name: create-project
brew:
github:
owner: frozzare
name: homebrew-tap
homepage: https://github.com/frozzare/create-project
description: Create project is a command line tool for create new project from a boilerplate.
test: |
system "#{bin}/create-project version"
install: |
bin.install "create-project"