fixed repoId/ownerId as string in json manifest (#59)

This commit is contained in:
Edwin Sirko
2024-01-29 21:03:59 -05:00
committed by GitHub
parent 20e4d5d06f
commit 207498716a
+1 -1
View File
@@ -29,7 +29,7 @@ export async function getRepositoryMetadata(
)
}
return { repoId: data.id, ownerId: data.owner.id }
return { repoId: String(data.id), ownerId: String(data.owner.id) }
}
export async function getContainerRegistryURL(): Promise<URL> {