Add Makefile target to publish release
This commit is contained in:
parent
08f79e2e0f
commit
2bd9cb93bf
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
/output/*
|
/output/*
|
||||||
|
/.token
|
||||||
|
|
27
Makefile
27
Makefile
|
@ -3,6 +3,7 @@ VERS_MINOR := 5
|
||||||
VERSION := $(VERS_MAJOR).$(VERS_MINOR)
|
VERSION := $(VERS_MAJOR).$(VERS_MINOR)
|
||||||
NEW_MINOR := $$(( $(VERS_MINOR) + 1 ))
|
NEW_MINOR := $$(( $(VERS_MINOR) + 1 ))
|
||||||
NEW_MAJOR := $$(( $(VERS_MAJOR) + 1 ))
|
NEW_MAJOR := $$(( $(VERS_MAJOR) + 1 ))
|
||||||
|
GITEA_URL := https://git.abbiamoundominio.org
|
||||||
|
|
||||||
output:
|
output:
|
||||||
|
|
||||||
|
@ -13,7 +14,7 @@ output/sendmail-dev: output
|
||||||
go build -o output/sendmail-dev ./...
|
go build -o output/sendmail-dev ./...
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm output/*
|
rm -f output/*
|
||||||
|
|
||||||
build: clean output/sendmail
|
build: clean output/sendmail
|
||||||
|
|
||||||
|
@ -34,14 +35,36 @@ bumpvers-major:
|
||||||
git commit -m "Bump version $(VERSION) -> $(NEW_MAJOR).$(VERS_MINOR)"
|
git commit -m "Bump version $(VERSION) -> $(NEW_MAJOR).$(VERS_MINOR)"
|
||||||
git tag $(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:
|
release-min:
|
||||||
make bumpvers-minor
|
make bumpvers-minor
|
||||||
make build
|
make build
|
||||||
make docker-build
|
make docker-build
|
||||||
|
git push
|
||||||
|
git push --tags
|
||||||
|
make new-release
|
||||||
|
|
||||||
release-maj:
|
release-maj:
|
||||||
make bumpvers-major
|
make bumpvers-major
|
||||||
make build
|
make build
|
||||||
make docker-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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user