Skip to content

Commit 8f91192

Browse files
committed
developers.md: Make creating release more reliable
1 parent 0cb614d commit 8f91192

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/developers.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -746,14 +746,14 @@ docker run --rm --entrypoint java gitops-playground:dev -classpath /app/gitops-p
746746
On `main` branch:
747747
748748
````shell
749-
TAG=0.2.0
749+
TAG=0.5.0
750750
751751
git checkout main
752-
git pull
753-
git tag -s $TAG -m $TAG
754-
git push --follow-tags
752+
[[ $? -eq 0 ]] && git pull
753+
[[ $? -eq 0 ]] && git tag -s $TAG -m $TAG
754+
[[ $? -eq 0 ]] && git push --follow-tags
755755
756-
xdg-open https://ecosystem.cloudogu.com/jenkins/job/cloudogu-github/job/gitops-playground/job/main/build?delay=0sec
756+
[[ $? -eq 0 ]] && xdg-open https://ecosystem.cloudogu.com/jenkins/job/cloudogu-github/job/gitops-playground/job/main/build?delay=0sec
757757
````
758758
759759
For now, please start a Jenkins Build of `main` manually.

0 commit comments

Comments
 (0)