Add vendor directory and update vendorHash to null
This commit is contained in:
parent
523831cb8d
commit
1e5424c844
778 changed files with 407919 additions and 1 deletions
37
vendor/github.com/pressly/goose/v3/.goreleaser.yaml
generated
vendored
Normal file
37
vendor/github.com/pressly/goose/v3/.goreleaser.yaml
generated
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
|
||||
#
|
||||
# See https://goreleaser.com/customization/ for more information.
|
||||
version: 2
|
||||
project_name: goose
|
||||
|
||||
before:
|
||||
hooks:
|
||||
- go mod tidy
|
||||
builds:
|
||||
- env:
|
||||
- CGO_ENABLED=0
|
||||
binary: goose
|
||||
main: ./cmd/goose
|
||||
goos:
|
||||
- linux
|
||||
- windows
|
||||
- darwin
|
||||
goarch:
|
||||
- amd64
|
||||
- arm64
|
||||
ldflags:
|
||||
# The v prefix is stripped by goreleaser, so we need to add it back.
|
||||
# https://goreleaser.com/customization/templates/#fnref:version-prefix
|
||||
- "-s -w -X main.version=v{{ .Version }}"
|
||||
|
||||
archives:
|
||||
- formats:
|
||||
- binary
|
||||
name_template: >-
|
||||
{{ .ProjectName }}_{{- tolower .Os }}_{{- if eq .Arch "amd64" }}x86_64{{- else }}{{ .Arch }}{{ end }}
|
||||
checksum:
|
||||
name_template: "checksums.txt"
|
||||
snapshot:
|
||||
version_template: "{{ incpatch .Version }}-next"
|
||||
changelog:
|
||||
use: github-native
|
||||
Loading…
Add table
Add a link
Reference in a new issue