Skip to content

Commit f833351

Browse files
fix!: rename sconifiedImage to image in deployment cache
1 parent f48e21a commit f833351

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cli/src/cmd/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export async function deploy({ chain }: { chain?: string }) {
145145

146146
// Add deployment data to deployments.json
147147
await addDeploymentData({
148-
sconifiedImage: appDockerImage,
148+
image: appDockerImage,
149149
appContractAddress: appContractAddress,
150150
owner: userAddress,
151151
chainName,

cli/src/utils/cacheExecutions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@ export async function addRunData({
5757

5858
// Function to add deployment data to deployments.json
5959
export async function addDeploymentData({
60-
sconifiedImage,
60+
image,
6161
appContractAddress,
6262
owner,
6363
chainName,
6464
}: {
65-
sconifiedImage: string;
65+
image: string;
6666
appContractAddress: string;
6767
owner: string;
6868
chainName: string;
6969
}) {
7070
const deploymentData = {
71-
sconifiedImage,
71+
image,
7272
appContractAddress,
7373
owner,
7474
};

0 commit comments

Comments
 (0)