Skip to content

Commit

Permalink
gorealeser added
Browse files Browse the repository at this point in the history
  • Loading branch information
davesavic committed Jan 1, 2024
1 parent 5ec4ded commit 6e4c681
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin

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
31 changes: 31 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
CURRENT_VERSION=$(shell git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")
MAJOR=$(shell echo $(CURRENT_VERSION) | cut -d. -f1 | tr -d v)
MINOR=$(shell echo $(CURRENT_VERSION) | cut -d. -f2)
PATCH=$(shell echo $(CURRENT_VERSION) | cut -d. -f3)

current-version:
@echo $(CURRENT_VERSION)

.PHONY: current-version

release:
@if [ "$(type)" = "major" ]; then \
NEW_MAJOR=$$(( $(MAJOR) + 1 )); \
NEW_VERSION="v$$NEW_MAJOR.0.0"; \
elif [ "$(type)" = "minor" ]; then \
NEW_MINOR=$$(( $(MINOR) + 1 )); \
NEW_VERSION="v$(MAJOR).$$NEW_MINOR.0"; \
elif [ "$(type)" = "patch" ]; then \
NEW_PATCH=$$(( $(PATCH) + 1 )); \
NEW_VERSION="v$(MAJOR).$(MINOR).$$NEW_PATCH"; \
else \
echo "Invalid release type. Use major, minor, or patch."; \
exit 1; \
fi; \
trap 'echo "Error encountered, cleaning up tags..."; git tag -d $$NEW_VERSION; git push origin :refs/tags/$$NEW_VERSION;' ERR; \
git tag -a $$NEW_VERSION -m "$(message)"; \
git push origin $$NEW_VERSION; \
goreleaser --clean; \
trap - ERR;

.PHONY: release

0 comments on commit 6e4c681

Please sign in to comment.