diff --git a/.github/actions/calculate-docker-image/action.yml b/.github/actions/calculate-docker-image/action.yml index cea29cff14..bff6ea6eb1 100644 --- a/.github/actions/calculate-docker-image/action.yml +++ b/.github/actions/calculate-docker-image/action.yml @@ -103,8 +103,8 @@ runs: retry login "${DOCKER_REGISTRY}" START_TIME=$(date +%s) - # Wait up to 90 minutes - while [[ $(( $(date +%s) - 5400 )) -lt $START_TIME ]]; do + # Wait up to 120 minutes + while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do # Check if image already exists, if it does then skip building it if docker manifest inspect "${DOCKER_IMAGE}"; then exit 0