6 lines
237 B
Bash
Executable File
6 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
# Proves HOOK_IMAGE_TAG is actually populated post-build (empty during
|
|
# pre_build, since buildDocker hasn't set env.TAG yet at that point).
|
|
set -e
|
|
echo "post_build hook: ${HOOK_REPO} built and pushed as tag ${HOOK_IMAGE_TAG}"
|