1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-26 09:00:57 +02:00
lazygit/.goreleaser.yml

66 lines
1.5 KiB
YAML
Raw Normal View History

2018-08-08 14:40:01 +02: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 08:00:00 +02:00
- env:
- CGO_ENABLED=0
goos:
- freebsd
- windows
- darwin
- linux
goarch:
- amd64
- arm
- arm64
- 386
2018-08-25 07:55:49 +02: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 13:48:35 +02:00
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: 32-bit
amd64: x86_64
format_overrides:
- goos: windows
format: zip
2018-08-08 14:40:01 +02:00
checksum:
name_template: 'checksums.txt'
snapshot:
2018-08-18 08:00:00 +02:00
name_template: '{{ .Tag }}-next'
2018-08-08 14:40:01 +02:00
changelog:
sort: asc
filters:
exclude:
2018-08-18 08:00:00 +02:00
- '^docs:'
- '^test:'
- '^bump'
2020-02-06 00:45:50 +02:00
brews:
-
# Reporitory to push the tap to.
github:
owner: jesseduffield
name: homebrew-lazygit
2018-08-08 15:28:52 +02:00
2020-02-06 00:45:50 +02:00
# Your app's homepage.
# Default is empty.
homepage: 'https://github.com/jesseduffield/lazygit/'
2018-08-08 15:28:52 +02:00
2020-02-06 00:45:50 +02:00
# Your app's description.
# Default is empty.
description: 'A simple terminal UI for git commands, written in Go'
2018-08-08 15:28:52 +02:00
2020-02-06 00:45:50 +02:00
# # Packages your package depends on.
# dependencies:
# - git
# - zsh
# # Packages that conflict with your package.
# conflicts:
# - svn
# - bash
2020-02-06 00:45:50 +02:00
# test comment to see if goreleaser only releases on new commits