From 4883ce6af3d465310271df74e3d0ed4f53c85ac5 Mon Sep 17 00:00:00 2001
From: Timo Furrer <tfurrer@gitlab.com>
Date: Wed, 30 Oct 2024 13:58:49 +0100
Subject: [PATCH] Fix stage and dependency of sign job

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 77a6333..88508d7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -250,6 +250,8 @@ gitlab-opentofu-image:deploy:dry-run:
 
 gitlab-opentofu-image:sign:
   extends: '.image-matrix:deploy'
+  stage: deploy
+  needs: ['gitlab-opentofu-image:deploy']
   image: alpine:3.20.3
   variables:
     COSIGN_YES: "true"  # Used by Cosign to skip confirmation prompts for non-destructive operations
-- 
GitLab