Skip to content

Commit dca5ed5

Browse files
committed
Use a static message for tags
There was still a quoting issue with ${CI_COMMIT_MESSAGE}. And it did only contain the generic "Merge pull request XYZ" message anyway. Let's just use "release $tag" as the commit message.
1 parent d0cfdcf commit dca5ed5

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.woodpecker/build-cpp-qt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ steps:
4747
environment: *environment
4848
commands:
4949
- cd libre-graph-api-cpp-qt-client
50-
- git tag -a ${CI_COMMIT_TAG} -m "${CI_COMMIT_MESSAGE}"
50+
- git tag -a ${CI_COMMIT_TAG} -m "release $CI_COMMIT_TAG"
5151
when:
5252
- event: tag
5353
push_target_repo:

.woodpecker/build-go.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ steps:
4747
environment: *environment
4848
commands:
4949
- cd libre-graph-api-go
50-
- git tag -a ${CI_COMMIT_TAG} -m "${CI_COMMIT_MESSAGE}"
50+
- git tag -a ${CI_COMMIT_TAG} -m "release $CI_COMMIT_TAG"
5151
when:
5252
- event: tag
5353
push_target_repo:

.woodpecker/build-php.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ steps:
4747
environment: *environment
4848
commands:
4949
- cd libre-graph-api-php
50-
- git tag -a ${CI_COMMIT_TAG} -m "${CI_COMMIT_MESSAGE}"
50+
- git tag -a ${CI_COMMIT_TAG} -m "release $CI_COMMIT_TAG"
5151
when:
5252
- event: tag
5353
push_target_repo:

.woodpecker/build-typescript-axios.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ steps:
4747
environment: *environment
4848
commands:
4949
- cd libre-graph-api-typescript-axios
50-
- git tag -a ${CI_COMMIT_TAG} -m "${CI_COMMIT_MESSAGE}"
50+
- git tag -a ${CI_COMMIT_TAG} -m "release $CI_COMMIT_TAG"
5151
when:
5252
- event: tag
5353
push_target_repo:

0 commit comments

Comments
 (0)