-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(ci): rename release branch image's tag #48
Conversation
So with this, the pushed branch name is used:
Right? I think that's a good enough improvement. I might prefer to have |
Oh, I meant that the I'm imagining a workflow where we cut a release branch like I think $ pwd
/home/work/workspace/cryostat-grafana-dashboard
$ git describe --tags --exact-match
fatal: no tag exactly matches 'd3a5158a827f34e205eea6ef5512737e66c3c229'
$ git tag
1.0.0-BETA4
v1.0.0
v2.1.0
v2.3.0
$ git checkout v2.3.0
$ git describe --tags --exact-match
v2.3.0 So something like |
ohhh I thought the period was a comma. Time to get glasses |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. WDYT @ebaron ?
If Elliott also agrees on tagging container images using git tags this way then we should do the same or similar across all of our repos that produce container images, too. This makes the release process a little easier/more automated, and keeps it consistent across repos. |
I'm a little concerned with using something like |
That's fair. We could have pushes to the branch We could leave it at that, or we could add a small snippet of JS or shell code that also tags the image as |
6d93eb4
to
2f4d560
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
spotted one potential tag handling bug
fixes: #39