995881ffb5
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
15 lines
293 B
Plaintext
15 lines
293 B
Plaintext
// Push image to remote registry (depends on image)
|
|
push: {
|
|
// Docker username
|
|
_dockerUsername: "<my_username>"
|
|
|
|
docker.#Push & {
|
|
"image": image.output
|
|
dest: "\(_dockerUsername)/<my_repository>"
|
|
auth: {
|
|
username: _dockerUsername
|
|
secret: client.env.DOCKER_PASSWORD
|
|
}
|
|
}
|
|
}
|