mirror of
https://github.com/nextcloud/server.git
synced 2026-04-27 09:08:22 -04:00
chore(cypress): also log the current server image sha
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
This commit is contained in:
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)
|
||||
}
|
||||
}))
|
||||
|
||||
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')
|
||||
} catch (e) {
|
||||
console.log('└─ Failed to pull images')
|
||||
|
|
|
|||
Loading…
Reference in a new issue