1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-18 05:17:55 +02:00
lazygit/.goreleaser.yml

64 lines
1.4 KiB
YAML
Raw Normal View History

2018-08-08 22:40:01 +10:00
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
builds:
2018-08-18 16:00:00 +10:00
- env:
- CGO_ENABLED=0
goos:
- freebsd
- windows
- darwin
- linux
goarch:
- amd64
- arm
- arm64
- 386
2018-08-25 15:55:49 +10:00
# Default is `-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}`.
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.buildSource=binaryRelease
2020-01-08 22:48:35 +11:00
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: 32-bit
amd64: x86_64
format_overrides:
- goos: windows
format: zip
2018-08-08 22:40:01 +10:00
checksum:
name_template: 'checksums.txt'
snapshot:
2018-08-18 16:00:00 +10:00
name_template: '{{ .Tag }}-next'
2018-08-08 22:40:01 +10:00
changelog:
sort: asc
filters:
exclude:
2018-08-18 16:00:00 +10:00
- '^docs:'
- '^test:'
- '^bump'
2020-02-06 09:45:50 +11:00
brews:
-
# Repository to push the tap to.
tap:
2020-02-06 09:45:50 +11:00
owner: jesseduffield
name: homebrew-lazygit
2018-08-08 23:28:52 +10:00
2020-02-06 09:45:50 +11:00
# Your app's homepage.
# Default is empty.
homepage: 'https://github.com/jesseduffield/lazygit/'
2018-08-08 23:28:52 +10:00
2020-02-06 09:45:50 +11:00
# Your app's description.
# Default is empty.
description: 'A simple terminal UI for git commands, written in Go'
2018-08-08 23:28:52 +10:00
2020-02-06 09:45:50 +11:00
# # Packages your package depends on.
# dependencies:
# - git
# - zsh
# # Packages that conflict with your package.
# conflicts:
# - svn
# - bash