From 6fd5aca934d23aab6931a39b87ff81d6b420af08 Mon Sep 17 00:00:00 2001
From: Dantali0n <info@dantalion.nl>
Date: Mon, 2 Oct 2023 13:10:49 +0200
Subject: [PATCH] Align jobs with stage names

---
 {{cookiecutter.project_slug}}/.gitlab-ci.yml | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/{{cookiecutter.project_slug}}/.gitlab-ci.yml b/{{cookiecutter.project_slug}}/.gitlab-ci.yml
index 7062366..9939665 100644
--- a/{{cookiecutter.project_slug}}/.gitlab-ci.yml
+++ b/{{cookiecutter.project_slug}}/.gitlab-ci.yml
@@ -6,11 +6,9 @@ default:
 
 stages:
   - prepare
-  - lint
-  # check if this needs to be a separate step
-  # - build_extensions
+  - linting
   - test
-  - package
+  - build
   - integration
   - publish # publish instead of deploy
 
@@ -120,7 +118,7 @@ build:
     - ninja
 
 pages:
-  stage: pages
+  stage: build
   needs: ["trigger_prepare"]
   script:
     # Generate documentation.
@@ -132,7 +130,7 @@ pages:
     # TODO: Add an index page with links to the documentation and coverage.
 
 abi-deploy:
-  stage: deploy
+  stage: publish
   needs: ["trigger_prepare"]
   environment: production
   script:
-- 
GitLab