Compare commits
7 Commits
d0e6d9afab
...
76a3a2b3f6
| Author | SHA1 | Date | |
|---|---|---|---|
| 76a3a2b3f6 | |||
| dc2e6446d5 | |||
| 74e622a5e0 | |||
| 3fe3a2a598 | |||
| e992129261 | |||
| cda7b95292 | |||
| cae8167795 |
@ -15,6 +15,7 @@ steps:
|
||||
commands:
|
||||
- git add .
|
||||
- git commit -m "[CI SKIP] version and changelog update"
|
||||
- git push origin $DRONE_TARGET_BRANCH
|
||||
- name: tag commit
|
||||
image: registry.riba-interactive.de/conventi:1
|
||||
commands:
|
||||
@ -27,6 +28,9 @@ trigger:
|
||||
- main
|
||||
event:
|
||||
- push
|
||||
|
||||
image_pull_secrets:
|
||||
- dockerconfig
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
@ -44,6 +48,9 @@ steps:
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
|
||||
image_pull_secrets:
|
||||
- dockerconfig
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "0.0.0",
|
||||
"sha": "",
|
||||
"version": "0.1.1",
|
||||
"sha": "dc2e644",
|
||||
"url": "https://git.riba-interactive.de/rick/waitui"
|
||||
}
|
||||
|
||||
25
CHANGELOG.md
25
CHANGELOG.md
@ -6,3 +6,28 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
||||
|
||||
----
|
||||
|
||||
## [0.1.1](https://git.riba-interactive.de/rick/waitui/compare/3fe3a2a...dc2e644) (2022-06-01)
|
||||
|
||||
|
||||
### Bug fixes 🩹
|
||||
|
||||
* **conventi:** fix `conventi.sh` function `get_commit_body()` ([dc2e644](https://git.riba-interactive.de/rick/waitui/commit/dc2e644))
|
||||
|
||||
## [0.1.0](https://git.riba-interactive.de/rick/waitui/compare/dafd1ae...3fe3a2a) (2022-06-01)
|
||||
|
||||
|
||||
### Bug fixes 🩹
|
||||
|
||||
* **pipeline:** fix `git push` parameters ([3fe3a2a](https://git.riba-interactive.de/rick/waitui/commit/3fe3a2a))
|
||||
* **pipeline:** push version and changelog after update ([e992129](https://git.riba-interactive.de/rick/waitui/commit/e992129))
|
||||
* **pipeline:** fix image pull in pipeline ([cda7b95](https://git.riba-interactive.de/rick/waitui/commit/cda7b95))
|
||||
|
||||
|
||||
### Features 📦
|
||||
|
||||
* add version and changelog update to pipeline ([7dd39a9](https://git.riba-interactive.de/rick/waitui/commit/7dd39a9))
|
||||
|
||||
|
||||
### Chores 🧽
|
||||
|
||||
* **release:** release the lastest develop ([cae8167](https://git.riba-interactive.de/rick/waitui/commit/cae8167))
|
||||
|
||||
@ -170,7 +170,7 @@ get_commit_footer() {
|
||||
}
|
||||
|
||||
get_commit_body() {
|
||||
pattern=$(get_commit_footer "$1" | head -n 1)
|
||||
pattern=$(get_commit_footer "$1" | head -n 1 | sed -e 's/[]\/$*.^[]/\\&/g')
|
||||
if [ -n "$pattern" ]; then
|
||||
echo "$1" | sed -e "/$pattern/,\$d"
|
||||
else
|
||||
|
||||
Loading…
Reference in New Issue
Block a user