diff --git a/README.md b/README.md
index 7663e2a470848bf81f67abe5471c117433000e57..60a925573b665449a411c36bcd648f10b9ba6ece 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,11 @@ stages:
 
 include:
   - component: gitlab.sauerburger.com/sauerburger-it/devops/kaniko-build@0.1.0
+    rules: 
+    - if: $CI_COMMIT_TAG
+
   - component: gitlab.sauerburger.com/sauerburger-it/devops/kaniko-build@0.1.0
+    rules: 
+    - if: $CI_COMMIT_TAG
     inputs:
-      name: second-image  # Overwrite image name to
\ No newline at end of file
+      name: second-image  # Overwrite image name to allow multiple jobs
\ No newline at end of file
diff --git a/templates/kaniko-build.yml b/templates/kaniko-build.yml
index cb958305cccce4158fb4143b9fb9d590c37240cd..95c5aeae7696d3493269d2866140cd9fcef1eeda 100644
--- a/templates/kaniko-build.yml
+++ b/templates/kaniko-build.yml
@@ -29,8 +29,6 @@ $[[ inputs.name ]]:
   image:
     name: gcr.io/kaniko-project/executor:$[[ inputs.kaniko_tag ]]
     entrypoint: [""]
-  rules:
-    - if: $CI_COMMIT_TAG
   script:
     - echo "{\"auths\":{\"$[[ inputs.registry ]]\":{\"auth\":\"$(printf "%s:%s" "$[[ inputs.registry_user ]]" "$[[ inputs.registry_password ]]" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
     - /kaniko/executor