-
Notifications
You must be signed in to change notification settings - Fork 66
/
.goreleaser.windows.yaml
49 lines (46 loc) · 1.98 KB
/
.goreleaser.windows.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
# - go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- windows
ldflags:
# Default: '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser'
"-s -w -X github.com/simonwhitaker/gibo/cmd.version={{.Version}}"
archives:
- format: zip
# this name template makes the OS and Arch compatible with the results of uname.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
chocolateys:
- name: gibo
title: gibo
summary: "Fast access to .gitignore boilerplates"
project_source_url: https://github.com/simonwhitaker/gibo
package_source_url: https://github.com/simonwhitaker/gibo
project_url: https://github.com/simonwhitaker/gibo
release_notes: "https://github.com/simonwhitaker/gibo/releases/tag/v{{ .Version }}"
api_key: "{{ .Env.CHOCOLATEY_API_KEY }}"
docs_url: https://github.com/simonwhitaker/gibo/blob/main/README.md
license_url: https://github.com/simonwhitaker/gibo/blob/main/LICENSE
require_license_acceptance: false
url_template: "https://github.com/simonwhitaker/gibo/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
authors: Simon Whitaker
description: |-
**gibo** (short for .gitignore boilerplates) is a command-line tool to help you easily access .gitignore boilerplates from [github.com/github/gitignore](https://github.com/github/gitignore).
tags: git gitignore
checksum:
name_template: "checksums.windows.txt"