From eb72a6b28ea076ecddf3ca8c02ea5b48e1cf93ce Mon Sep 17 00:00:00 2001
From: Jens Steidl <Jens.Steidl@slub-dresden.de>
Date: Mon, 25 Sep 2023 11:59:24 +0200
Subject: [PATCH] - minor: standardized naming

---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ac92e3d..9be8381 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,7 +5,7 @@ variables:
 stages:          # List of stages for jobs, and their order of execution
   - build
   - test
-  - packaging
+  - package
 
 .build-env-job:
   stage: build
@@ -37,13 +37,13 @@ stages:          # List of stages for jobs, and their order of execution
       --use-new-run
       --ignore-var-run
 
-build-deb-env-job:
+build-debian-env-job:
   extends: .build-env-job
   variables:
     DOCKERFILE: ${DOCKERFILE_DEB}
     IMAGE_TARGET: ${IMAGE_TARGET_DEB}
 
-test-in-debian-job:   # This job runs in the test stage.
+test-debian-job:   # This job runs in the test stage.
   stage: test    # It only starts when the job in the build stage completes successfully.
   timeout: 5m
   tags:
@@ -53,8 +53,8 @@ test-in-debian-job:   # This job runs in the test stage.
   script:
     - shellcheck --color=always --shell=bash --enable=all --exclude=SC2317 "src/usr/local/bin/validate_workflow.sh"
 
-packaging-deb-job:
-  stage: packaging
+package-debian-job:
+  stage: package
   timeout: 5m
   image:
     name: "${IMAGE_TARGET_DEB}:latest"
-- 
GitLab