glow/.goreleaser.yml

96 lines
2 KiB
YAML
Raw Normal View History

env:
- GO111MODULE=on
2020-10-07 17:02:12 +00:00
- CGO_ENABLED=0
before:
hooks:
- go mod tidy
builds:
-
2019-12-20 21:47:47 +00:00
binary: glow
ldflags: -s -w -X main.Version={{ .Version }} -X main.CommitSHA={{ .Commit }}
goos:
- linux
- freebsd
- openbsd
- darwin
- windows
goarch:
- amd64
- arm64
- 386
- arm
goarm:
- 6
- 7
2019-12-20 23:57:02 +00:00
archives:
-
2019-12-20 23:57:02 +00:00
builds:
- glow
2019-12-20 23:57:02 +00:00
format_overrides:
- goos: windows
format: zip
replacements:
windows: Windows
darwin: Darwin
386: i386
2019-12-20 23:57:02 +00:00
amd64: x86_64
2019-12-31 07:31:43 +00:00
nfpms:
-
2019-12-31 07:31:43 +00:00
vendor: charmbracelet
homepage: "https://charm.sh/"
maintainer: "Christian Muehlhaeuser <muesli@gmail.com>"
description: "Render markdown on the CLI"
license: MIT
formats:
- apk
2019-12-31 07:31:43 +00:00
- deb
- rpm
bindir: /usr/bin
2019-12-20 23:57:02 +00:00
brews:
- goarm: 6
tap:
owner: charmbracelet
name: homebrew-tap
commit_author:
name: "Christian Muehlhaeuser"
email: "muesli@gmail.com"
homepage: "https://charm.sh/"
description: "Render markdown on the CLI"
# skip_upload: true
2019-12-20 23:57:02 +00:00
snapcrafts:
-
name: glow
publish: true
summary: Render markdown on the CLI, with pizzazz!
description: |
Glow is a terminal based markdown reader designed from the ground up to bring out the beauty—and power—of the CLI.
Use it to discover markdown files, read documentation directly on the command line and stash markdown files to your own private collection so you can read them anywhere. Glow will find local markdown files in subdirectories or a local Git repository.
By the way, all data stashed is encrypted end-to-end: only you can decrypt it. More on that below.
grade: stable
confinement: strict
license: MIT
base: core20
apps:
glow:
plugs: ["home", "network"]
2019-12-31 07:31:43 +00:00
signs:
- artifacts: checksum
2019-12-20 23:57:02 +00:00
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"