Skip to content

Commit

Permalink
chore: add missing Go releaser config
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishb committed Mar 24, 2024
1 parent 4bd0004 commit 77e8e08
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
# Ref: https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
# - cd src/wp2hugo && go mod tidy
# you may remove this if you don't need go generate
# - go generate ./...
builds:
- dir: src/wp2hugo
# Ref: https://goreleaser.com/errors/no-main/
main: ./cmd/wp2hugo
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
binary: wp2hugo

archives:
- format: tar.gz
# 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 }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'

# The lines beneath this are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj

0 comments on commit 77e8e08

Please sign in to comment.