1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-15 22:26:40 +02:00

add 386 architecture to releases

This commit is contained in:
Jesse Duffield 2018-08-18 16:00:00 +10:00
parent 29431ddc8e
commit ad8f02b986

View File

@ -1,23 +1,24 @@
# This is an example goreleaser.yaml file with some sane defaults. # This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com # Make sure to check the documentation at http://goreleaser.com
builds: builds:
- env: - env:
- CGO_ENABLED=0 - CGO_ENABLED=0
goos: goos:
- freebsd - freebsd
- windows - windows
- darwin - darwin
- linux - linux
goarch: goarch:
- amd64 - amd64
- arm - arm
- arm64 - arm64
- 386
archive: archive:
replacements: replacements:
darwin: Darwin darwin: Darwin
linux: Linux linux: Linux
windows: Windows windows: Windows
386: i386 386: 32-bit
amd64: x86_64 amd64: x86_64
format_overrides: format_overrides:
- goos: windows - goos: windows
@ -25,13 +26,13 @@ archive:
checksum: checksum:
name_template: 'checksums.txt' name_template: 'checksums.txt'
snapshot: snapshot:
name_template: "{{ .Tag }}-next" name_template: '{{ .Tag }}-next'
changelog: changelog:
sort: asc sort: asc
filters: filters:
exclude: exclude:
- '^docs:' - '^docs:'
- '^test:' - '^test:'
brew: brew:
# Reporitory to push the tap to. # Reporitory to push the tap to.
github: github:
@ -40,20 +41,19 @@ brew:
# Your app's homepage. # Your app's homepage.
# Default is empty. # Default is empty.
homepage: "https://github.com/jesseduffield/lazygit/" homepage: 'https://github.com/jesseduffield/lazygit/'
# Your app's description. # Your app's description.
# Default is empty. # Default is empty.
description: "A simple terminal UI for git commands, written in Go" description: 'A simple terminal UI for git commands, written in Go'
# # Packages your package depends on. # # Packages your package depends on.
# dependencies: # dependencies:
# - git # - git
# - zsh # - zsh
# # Packages that conflict with your package. # # Packages that conflict with your package.
# conflicts: # conflicts:
# - svn # - svn
# - bash # - bash
# test comment to see if goreleaser only releases on new commits # test comment to see if goreleaser only releases on new commits