chore(cypress): also log the current server image sha

Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
pull/50932/head
skjnldsv 2025-02-20 19:39:33 +07:00
parent 7786d6a53d
commit 4783f2f215
1 changed files with 4 additions and 0 deletions

@ -49,6 +49,10 @@ export const startNextcloud = async function(branch: string = getCurrentGitBranc
reject(err) reject(err)
} }
})) }))
const digest = await (await docker.getImage(SERVER_IMAGE).inspect()).RepoDigests.at(0)
const sha = digest?.split('@').at(1)
console.log('├─ Using image ' + sha)
console.log('└─ Done') console.log('└─ Done')
} catch (e) { } catch (e) {
console.log('└─ Failed to pull images') console.log('└─ Failed to pull images')