mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
chore: try to make goreleaser add all changes to changelog
This commit is contained in:
parent
a6b5be7b0a
commit
41fd5862b8
2 changed files with 1 additions and 5 deletions
|
@ -83,6 +83,3 @@ changelog:
|
||||||
filters:
|
filters:
|
||||||
exclude:
|
exclude:
|
||||||
- '^docs:'
|
- '^docs:'
|
||||||
- '^test:'
|
|
||||||
- '^chore:'
|
|
||||||
- '^ci:'
|
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -72,11 +72,10 @@ buildall: check_env assets/embedded_gen.go
|
||||||
release:
|
release:
|
||||||
@if [[ ! "${V}" =~ ^[0-9]+\.[0-9]+\.[0-9]+.*$$ ]]; then echo "Usage: make release V=X.X.X"; exit 1; fi
|
@if [[ ! "${V}" =~ ^[0-9]+\.[0-9]+\.[0-9]+.*$$ ]]; then echo "Usage: make release V=X.X.X"; exit 1; fi
|
||||||
go mod tidy
|
go mod tidy
|
||||||
make test
|
|
||||||
@if [ -n "`git status -s`" ]; then echo "\n\nThere are pending changes. Please commit or stash first"; exit 1; fi
|
@if [ -n "`git status -s`" ]; then echo "\n\nThere are pending changes. Please commit or stash first"; exit 1; fi
|
||||||
|
make test
|
||||||
git tag v${V}
|
git tag v${V}
|
||||||
git push origin v${V}
|
git push origin v${V}
|
||||||
git push origin master
|
|
||||||
|
|
||||||
.PHONY: dist
|
.PHONY: dist
|
||||||
dist:
|
dist:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue