mirror of
https://github.com/davegallant/vpngate.git
synced 2025-08-05 16:23:40 +00:00
54 lines
1023 B
YAML
54 lines
1023 B
YAML
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
|
|
# vim: set ts=2 sw=2 tw=0 fo=jcroql
|
|
version: 2
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
- go get -v
|
|
- rm -rf dist
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
- windows
|
|
goarch:
|
|
- "386"
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- "7"
|
|
ldflags:
|
|
- -s -w
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
checksum:
|
|
name_template: "checksums.txt"
|
|
snapshot:
|
|
name_template: "{{ .Tag }}"
|
|
changelog:
|
|
sort: asc
|
|
use: github
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
release:
|
|
github:
|
|
owner: davegallant
|
|
name: vpngate
|
|
|
|
# Check https://goreleaser.com/customization/homebrew/
|
|
brews:
|
|
- homepage: "https://github.com/davegallant/homebrew-public"
|
|
description: "a client for vpngate.net"
|
|
directory: Formula
|
|
commit_author:
|
|
name: davegallant
|
|
email: davegallant@gmail.com
|
|
repository:
|
|
owner: davegallant
|
|
name: homebrew-public
|