mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 14:49:07 +00:00
45 lines
1012 B
YAML
45 lines
1012 B
YAML
# This is an example .goreleaser.yml file with some sensible defaults.
|
|
# Make sure to check the documentation at https://goreleaser.com
|
|
|
|
# The lines below are called `modelines`. See `:help modeline`
|
|
# Feel free to remove those if you don't want/need to use them.
|
|
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
|
|
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
|
|
|
|
version: 1
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
- go mod download
|
|
env:
|
|
- CGO_ENABLED=0
|
|
builds:
|
|
- binary: oneuptime-infrastructure-agent
|
|
main: ./
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
- freebsd
|
|
- openbsd
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
goarm:
|
|
- "6"
|
|
- "7"
|
|
archives:
|
|
- format: tar.gz
|
|
# this name template makes the OS and Arch compatible with the results of `uname`.
|
|
name_template: '{{ .Binary }}_{{ .Os }}_{{ .Arch }}'
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|