-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release commit into master (#39)
* Merge release commit into master Signed-off-by: Juraci Paixão Kröhling <[email protected]> * Only publish images under specific situations Signed-off-by: Juraci Paixão Kröhling <[email protected]>
- Loading branch information
1 parent
f8c1af1
commit 6883c81
Showing
3 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,9 @@ else | |
git commit -qm "Release ${TAG}" --author="Jaeger Release <[email protected]>" | ||
git tag ${TAG} | ||
git push --tags --repo=https://${GH_WRITE_TOKEN}@github.com/jaegertracing/jaeger-operator.git | ||
|
||
## release commit should reach master! | ||
git checkout master | ||
git merge ${TAG} | ||
git push --repo=https://${GH_WRITE_TOKEN}@github.com/jaegertracing/jaeger-operator.git | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
1. Tag and push | ||
git tag release/1.6.1 | ||
git checkout master ## it's only possible to release from master for now! | ||
git tag release/v1.6.1 | ||
git push [email protected]:jaegertracing/jaeger-operator.git release/v1.6.1 |