-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add fixed stable version of controller #21
Conversation
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.
Great stuff. So we can manually trigger the action by editing STABLE_VERSION
(getting a new latest
and stable
) or automatically by any other change (getting a new latest
, because the other is cached). Right?
with: | ||
context: . | ||
push: true | ||
tags: ${{ env.REGISTRY_PATH }}/ocrd_controller:stable |
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.
Perhaps we can even add some release tag here:
tags: ${{ env.REGISTRY_PATH }}/ocrd_controller:stable | |
tags: ${{ env.REGISTRY_PATH }}/ocrd_controller:stable,${{ env.REGISTRY_PATH }}/ocrd_controller:${{ env.vcs_tag }} |
(Will be just HEAD
if there is no tag for it.)
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.
The question was whether saving the tags will cause problems on GitHub. I assumed that the stable tag simply overrides the stable image version.
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.
I assumed that the stable tag simply overrides the stable image version.
I'm sure it does. This is just to make sure we also produce some persistent images ourselves from time to time (viz. whenever we decide to make a release).
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.
Why didn't you commit my suggestions?
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.
oh I thought I had already done that. Was not intentional. I'll change that directly.
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.
Added your suggest changes with seperate pr #22
Atm the stable version rebuilds with same behaviour like the latest version but with the different of using the parent version. So when something in Controller repo is changed than the stable version rebuilds too. |
Fixes #11