diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ac92e3d2aacc374326c9077361584a932d976d3c..9be8381f405321e9f1660c857d73cd33617642c6 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"