Compare commits

..

4 Commits

Author SHA1 Message Date
162db3d12b version and changelog update [CI SKIP]
All checks were successful
continuous-integration/drone/pr Build is passing
2022-07-25 20:57:01 +00:00
7f1d1ffffc Merge pull request 'build: update pipeline conventi to latest' (#7) from develop into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #7
2022-07-25 22:56:51 +02:00
e7c9099696 Merge pull request 'chore: add to the README simple usage instructions' (#4) from develop into main
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #4
2022-07-25 22:44:53 +02:00
b28ca00d28 Merge pull request 'feat: initial version of separate docker image' (#2) from develop into master
All checks were successful
continuous-integration/drone/pr Build is passing
Reviewed-on: #2
2022-07-25 22:26:36 +02:00
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ steps:
commands:
- git fetch --tags
- name: Update version and changelog
image: registry.riba-interactive.de/conventi:0.1.0
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:0.1.0
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,4 +1,4 @@
Copyright (c) 2022 Rick Barenthin. All Rights Reserved.
Copyright (c) 2022 riba-interactiv.de. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

View File

@ -6,10 +6,10 @@
To initialize a git repositiory for version management and changelog generation use:
```
docker run -v "$(pwd):/conventi" registry.riba-interactive.de/conventi:latest init
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:latest
docker run -v "$(pwd):/conventi" registry.riba-interactive.de/conventi:lastest
```