From dd294ee48a164e47946c3447dae72f8a9809f3e0 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Mon, 13 Nov 2023 09:18:10 -0800 Subject: [PATCH] Change interface to match v0.53.0 (https://github.com/devcontainers/cli/blob/9444540283b236298c28f397dea879e7ec222ca1/src/spec-node/collectionCommonUtils/publishCommandImpl.ts#L63) --- src/contracts/collection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contracts/collection.ts b/src/contracts/collection.ts index fefaeac..b37147d 100644 --- a/src/contracts/collection.ts +++ b/src/contracts/collection.ts @@ -10,7 +10,7 @@ export interface GitHubMetadata { } export interface PublishResult { - publishedVersions: string[]; + publishedTags: string[]; digest: string; version: string; }