From f3e899b97158be9fa7b50df732930c1f486115d2 Mon Sep 17 00:00:00 2001 From: Georges Racinet Date: Fri, 20 Nov 2020 16:38:01 +0100 Subject: [PATCH] Heptapod CI: using our own registry to avoid Docker Hub rate limits This is a quickfix, we'll probably rehost the image in `heptapod/ci-images` at some point. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1d3640b..a819e65 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,20 +3,20 @@ stages: - deploy html-build: - image: octobus/ci-website + image: registry.heptapod.net/octobus/ci-dockerfiles/ci-website stage: build script: - PELICAN=pelican make build deploy-test: - image: octobus/ci-website + image: registry.heptapod.net/octobus/ci-dockerfiles/ci-website stage: deploy script: - PELICAN=pelican make build # use artefact eventually - netlify deploy --site=056ee9b4-122d-4b02-bf62-5a2fc9776196 --auth="$NETLIFY_AUTH_TOKEN" --dir="output" deploy: - image: octobus/ci-website + image: registry.heptapod.net/octobus/ci-dockerfiles/ci-website stage: deploy only: - branch/default -- GitLab