fix(ci): use REGISTRY_TOKEN for build-and-push registry login (CAR-1330) #50

Merged
Savannah Savings merged 4 commits from betty/car-1330-buildpush-registry-token-dev into dev 2026-06-09 17:47:11 +00:00
Showing only changes of commit c1147590dd - Show all commits
+1 -1
View File
@@ -35,7 +35,7 @@ class CacheClient:
async def get(self, key: str) -> str | None:
if not self._client:
return None
value = await self._client.get(key)
value: str | bytes | None = await self._client.get(key)
if value is None:
return None
if isinstance(value, bytes):