Skip to content
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

core: version-chooser: fix checking for remote tags with 'companion-core' #741

Merged
merged 1 commit into from
Jan 27, 2022

Conversation

Williangalvani
Copy link
Member

Fix #384

image being built: williangalvani/companion-core:fix_tag_check

@@ -219,7 +219,7 @@ async def get_available_versions(self, repository: str) -> web.Response:
for image in await self.client.images.list():
if not image["RepoTags"]:
continue
if not any("companion-core" in tag for tag in image["RepoTags"]):
if not any(tag.startswith("companion-core:") for tag in image["RepoTags"]):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we also make it valid for blueos-core ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that belongs on it's own pr adding support for blueos-core

@patrickelectric patrickelectric merged commit 7f5bb00 into bluerobotics:master Jan 27, 2022
@Williangalvani Williangalvani deleted the fix_tag_check branch February 21, 2022 15:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Version chooser is not filtering dockers that are not core
2 participants