Compare commits

...

3 Commits

Author SHA1 Message Date
wpetit 56d4a9f77e chore: update changelog
Cadoles/mktools/pipeline/head There was a failure building this commit Details
2023-08-23 15:33:44 -06:00
wpetit bec93c7a9d chore: use tag as release target 2023-08-23 15:33:35 -06:00
wpetit 8b361ede1d chore: update changelog 2023-08-23 15:30:40 -06:00
2 changed files with 24 additions and 3 deletions

View File

@ -1,6 +1,18 @@
<a name="unreleased"></a>
## [Unreleased]
<a name="2023.8.23-stb.1533"></a>
## [2023.8.23-stb.1533] - 2023-08-23
<a name="2023.8.23-stable.1533.bec93c7"></a>
## [2023.8.23-stable.1533.bec93c7] - 2023-08-23
<a name="2023.8.23-stb.1530"></a>
## [2023.8.23-stb.1530] - 2023-08-23
<a name="2023.8.23-stable.1530.f7e31f8"></a>
## [2023.8.23-stable.1530.f7e31f8] - 2023-08-23
### Bug Fixes
- **changelog:** add missing task dependency
@ -17,4 +29,8 @@
- initial commit
[Unreleased]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1207.cd2f1ba...HEAD
[Unreleased]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stb.1533...HEAD
[2023.8.23-stb.1533]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1533.bec93c7...2023.8.23-stb.1533
[2023.8.23-stable.1533.bec93c7]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stb.1530...2023.8.23-stable.1533.bec93c7
[2023.8.23-stb.1530]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1530.f7e31f8...2023.8.23-stb.1530
[2023.8.23-stable.1530.f7e31f8]: https://forge.cadoles.com/Cadoles/mktools/compare/2023.8.23-stable.1207.cd2f1ba...2023.8.23-stable.1530.f7e31f8

View File

@ -13,12 +13,13 @@ MKT_GITEA_RELEASE_PROJECT ?= mktools
.PHONY: release
release:
$(MAKE) update-changelog
git tag $(MKT_PROJECT_VERSION)
git tag $(MKT_PROJECT_SHORT_VERSION)
git push --tags
$(MAKE) update-changelog
$(MAKE) \
MKT_GITEA_RELEASE_ATTACHMENTS="CHANGELOG.md" \
MKT_GITEA_RELEASE_COMMIT_TARGET="$(MKT_PROJECT_VERSION)" \
mkt-gitea-release
@ -28,9 +29,13 @@ clean:
.PHONY: update-changelog
update-changelog:
$(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-changelog
$(MAKE) changelog
git add CHANGELOG.md
git commit -m "chore: update changelog"
git push --tags
.PHONY: changelog
changelog:
$(MAKE) MKT_GIT_CHGLOG_PROJECT_ORG=Cadoles MKT_GIT_CHGLOG_PROJECT_NAME=mktools mkt-changelog
include tasks/*.mk