TEST: look into using goreleaser
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
66be964e01
commit
28f0e5cf14
5
Makefile
5
Makefile
|
@ -27,6 +27,11 @@ build:
|
||||||
-X main.BUILDTIME='${BUILDTIME}' \
|
-X main.BUILDTIME='${BUILDTIME}' \
|
||||||
-X main.VERSION=${VERSION}"
|
-X main.VERSION=${VERSION}"
|
||||||
|
|
||||||
|
goreleaser:
|
||||||
|
# go install github.com/goreleaser/goreleaser@latest
|
||||||
|
goreleaser release
|
||||||
|
|
||||||
|
|
||||||
godoc:
|
godoc:
|
||||||
godoc -http=:6060
|
godoc -http=:6060
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
project_name: debian-gui
|
||||||
|
|
||||||
|
builds:
|
||||||
|
-
|
||||||
|
id: debian-gui
|
||||||
|
# ldflags:
|
||||||
|
# - -s -w -X code.rocketnine.space/tslocum/carotidartillery/main.Version={{.Version}}
|
||||||
|
goos:
|
||||||
|
- js
|
||||||
|
- linux
|
||||||
|
- windows
|
||||||
|
goarch:
|
||||||
|
- amd64
|
||||||
|
- wasm
|
||||||
|
archives:
|
||||||
|
-
|
||||||
|
id: debian-gui
|
||||||
|
builds:
|
||||||
|
- debian-gui
|
||||||
|
replacements:
|
||||||
|
386: i386
|
||||||
|
format_overrides:
|
||||||
|
- goos: js
|
||||||
|
format: zip
|
||||||
|
- goos: windows
|
||||||
|
format: zip
|
||||||
|
files:
|
||||||
|
- ./*.md
|
||||||
|
- LICENSE
|
||||||
|
checksum:
|
||||||
|
name_template: 'checksums.txt'
|
Loading…
Reference in New Issue