From 3510d74666313d3c88791f7f67baed483e51434e Mon Sep 17 00:00:00 2001
From: Daniel Wysocki <daniel.m.wysocki@gmail.com>
Date: Tue, 23 Aug 2022 19:44:38 -0400
Subject: [PATCH] Pulling docker image before tagging

Not sure why this seems to be necessary sometimes but not others, but
it seems to do the trick.
---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8c5d7c77e..96b3436bd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -128,6 +128,7 @@ latest_image:
     refs:
       - master
   script:
+    - docker pull $DOCKER_BRANCH
     - docker tag $DOCKER_BRANCH $DOCKER_LATEST
     - docker push $DOCKER_LATEST
   retry:
-- 
GitLab