Compare commits

...

2 Commits

Author SHA1 Message Date
102792422d build: update pipeline conventi to latest
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
To use the nevest version for now
2022-07-25 22:55:07 +02:00
c77d96ab39 chore: add to the README simple usage instructions
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #3
PR #3
2022-07-25 22:42:07 +02:00
2 changed files with 14 additions and 2 deletions

View File

@ -9,7 +9,7 @@ steps:
commands:
- git fetch --tags
- name: Update version and changelog
image: registry.riba-interactive.de/conventi:1
image: registry.riba-interactive.de/conventi:latest
- name: Commit changelog updates
image: alpine/git
commands:
@ -17,7 +17,7 @@ steps:
- git commit -m "version and changelog update [CI SKIP]"
- git push origin $DRONE_TARGET_BRANCH
- name: Tag commit
image: registry.riba-interactive.de/conventi:1
image: registry.riba-interactive.de/conventi:latest
commands:
- export VERSION=$(conventi.sh get_version)
- git tag -am "Tagging new version $VERSION" "$VERSION"

View File

@ -1,3 +1,15 @@
# conventi
[![Build Status](https://drone.riba-interactive.de/api/badges/rick/conventi/status.svg)](https://drone.riba-interactive.de/rick/conventi)
To initialize a git repositiory for version management and changelog generation use:
```
docker run -v "$(pwd):/conventi" registry.riba-interactive.de/conventi:lastest init
```
For updating the version and changelog simply run:
```
docker run -v "$(pwd):/conventi" registry.riba-interactive.de/conventi:lastest
```