Rich Enhanced Shell History - Contextual shell history for zsh and bash
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
resh/.goreleaser.yml

85 lines
1.8 KiB

# .goreleaser.yml
project_name: resh
# resh_template: '{{ ProjectName }}_{{ .Version }}'
# env:
# - GO111MODULE=on
# before:
# hooks:
# - go mod tidy
builds:
# You can have multiple builds defined as a yaml list
# ID of the build.
# Defaults to the project name.
# id: "daemon"
# Path to main.go file or main package.
# Default is `.`.
# id: ./cmd/daemon
# Binary name.
# Can be a path (e.g. `bin/app`) to wrap the binary in a directory.
# Default is the name of the project directory.
# binary: resh-daemon
# Hooks can be used to customize the final binary,
# for example, to run generators.
# Those fields allow templates.
# Default is both hooks empty.
# hooks:
# pre: rice embed-go
# post: ./script.sh
-
id: "collect"
main: ./cmd/collect
binary: resh-collect
-
id: "config"
main: ./cmd/config
binary: resh-config
-
id: "control"
main: ./cmd/control
binary: resh-control
-
id: "daemon"
main: ./cmd/daemon
binary: resh-daemon
-
id: "evaluate"
main: ./cmd/evaluate
binary: resh-evaluate
-
id: "event"
main: ./cmd/event
binary: resh-event
-
id: "inspect"
main: ./cmd/inspect
binary: resh-inspect
-
id: "postcollect"
main: ./cmd/postcollect
binary: resh-postcollect
-
id: "sanitize"
main: ./cmd/sanitize
binary: resh-sanitize
-
id: "session-init"
main: ./cmd/session-init
binary: resh-session-init
# signs:
# - artifacts: checksum
release:
draft: true
# If set to auto, will mark the release as not ready for production
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
# If set to true, will mark the release as not ready for production.
# Default is false.
prerelease: auto
# disable: true