We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbbd26c commit 0745eebCopy full SHA for 0745eeb
ci/build-in-docker.sh
@@ -39,13 +39,12 @@ default_branch_tag="$(cut -d: -f1 <<<"$docker_tag"):$(echo "${GITHUB_DEFAULT_BRA
39
extra_build_args=()
40
41
if [[ "${GITHUB_ACTIONS:-}" != "" ]]; then
42
- echo "Building on GitHub actions, pushing cache"
+ echo "Building on GitHub actions, storing cache on registry"
43
extra_build_args+=(
44
- --output "type=registry,ref=${docker_tag}"
45
- --push
+ --cache-to "type=registry,ref=${docker_tag}"
46
)
47
else
48
- echo "Local build, not pushing cache"
+ echo "Local build, not storing cache on registry"
49
fi
50
51
# building local image to "cache" installed dependencies for subsequent builds
0 commit comments