From cccbf53851c3bc7c1dfa5beb5696f877e85015c5 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Tue, 16 Apr 2019 15:44:01 -0700 Subject: [PATCH] Fix path in registry --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 37aaa5a..b4ffe9e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,8 +34,8 @@ lint:shell-script: build:master: stage: deploy script: - - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:latest" ./context/ - - docker push "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:latest" + - docker build --pull -t "$CI_REGISTRY_IMAGE/latest" ./context/ + - docker push "$CI_REGISTRY_IMAGE/latest" only: - master when: manual @@ -43,7 +43,7 @@ build:master: build:dev: stage: deploy script: - - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:dev" ./context/ - - docker push "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:dev" + - docker build --pull -t "$CI_REGISTRY_IMAGE/dev" ./context/ + - docker push "$CI_REGISTRY_IMAGE/dev" except: - master -- GitLab