Skip to content

Commit b30eb78

Browse files
committed
chore(tasks): Add default tag message on task release
1 parent ba813a7 commit b30eb78

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929
- chore: Move `ADRs/` to `docs/ADRs/` (@RemiBardon in 2e58e92).
3030
- feat(tasks): Run Jaeger by default on `task telemetry:start` (@RemiBardon in 4fa9d94).
3131
- docs(openapi): Improve errors (@RemiBardon in 3a7fe7f).
32+
- chore(tasks): Add default tag message on `task release` (@RemiBardon).
3233

3334
### Added
3435

scripts/release

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ info "Committing changes…"
152152
edo git add "${VERSION_FILE:?}" "${OPENAPI_SPEC_FILE:?}" "${CARGO_TOML_FILE:?}" "${LOCAL_RUN_CONSTANTS_FILE:?}" "${CARGO_LOCK_FILE:?}"
153153
edo git commit -m "$(to-tag "${NEW_VERSION:?}")"
154154
info "Creating tag…"
155-
edo git tag "$(to-tag "${NEW_VERSION:?}")"
155+
edo git tag "$(to-tag "${NEW_VERSION:?}")" -m "$(to-tag "${NEW_VERSION:?}")"
156156
info "Pushing tag…"
157157
edo git push --atomic origin "${GIT_BRANCH:?}" "$(to-tag "${NEW_VERSION:?}")"
158158

0 commit comments

Comments
 (0)