diff --git a/.gitignore b/.gitignore index 354da5c..16cd2d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /output/* +/.token diff --git a/Makefile b/Makefile index 3fa03d0..5a7bd90 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ VERS_MINOR := 5 VERSION := $(VERS_MAJOR).$(VERS_MINOR) NEW_MINOR := $$(( $(VERS_MINOR) + 1 )) NEW_MAJOR := $$(( $(VERS_MAJOR) + 1 )) +GITEA_URL := https://git.abbiamoundominio.org output: @@ -13,7 +14,7 @@ output/sendmail-dev: output go build -o output/sendmail-dev ./... clean: - rm output/* + rm -f output/* build: clean output/sendmail @@ -34,14 +35,36 @@ bumpvers-major: git commit -m "Bump version $(VERSION) -> $(NEW_MAJOR).$(VERS_MINOR)" git tag $(NEW_MAJOR).$(VERS_MINOR) +new-release: + last_tag=$$(git tag|tail -n2|head -n1); \ + release_id=$$(curl -X POST \ + "$(GITEA_URL)/api/v1/repos/blallo/sendmail/releases" \ + -H "Authorization: token $$(cat .token)" \ + -H "accept: application/json" \ + -H "Content-Type: application/json" \ + -d "{\"body\": \"$$(git log $${last_tag}..HEAD~)\", \"draft\": false, \"name\": \"$(VERSION)\", \"prerelease\": false, \"tag_name\": \"$(VERSION)\", \"target_commitish\": \"$$(git rev-parse HEAD)\" }") \ + | jq '.id'; \ + curl -X POST \ + "$(GITEA_URL)/api/v1/repos/blallo/sendmail/releases/$${release_id}/assets?name=sendmail" \ + -H "Authorization: token $$(cat .token)" \ + -H "accept: application/json" \ + -H "Content-Type: multipart/form-data" \ + -F "attachment=@output/sendmail" + release-min: make bumpvers-minor make build make docker-build + git push + git push --tags + make new-release release-maj: make bumpvers-major make build make docker-build + git push + git push --tags + make new-release -PHONY: bumpvers-minor bumpvers-major release-min release-maj clean docker-build +PHONY: bumpvers-minor bumpvers-major release-min release-maj clean docker-build new-release