From 9fca02616b33a3a9956fe7bbd2b788eaa4610aa6 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Tue, 16 Apr 2019 15:22:01 -0700 Subject: [PATCH] Better job naming --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 111c9d7..69b58b6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,7 @@ before_script: # TESTS # -lint-dockerfile: +lint:dockerfile: stage: test image: hadolint/hadolint:latest-debian before_script: @@ -19,7 +19,7 @@ lint-dockerfile: script: - find . -name "Dockerfile" -execdir hadolint {} \; -lint-shell-script: +lint:shell-script: stage: test image: koalaman/shellcheck-alpine:latest before_script: @@ -31,7 +31,7 @@ lint-shell-script: # IMAGE BUILDS/PUSHES # -build-master: +build:master: stage: deploy script: - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:latest" ./Dockerfile @@ -40,7 +40,7 @@ build-master: - master when: manual -build-dev: +build:dev: stage: deploy script: - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:dev" ./Dockerfile -- GitLab