From dcb47da9f7a41188bd151780d5859ce6530de559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Sat, 29 Mar 2025 18:28:53 +0100 Subject: [PATCH] fix pipe --- .drone.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index ab99fdf0c..4e2651df9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ kind: pipeline type: kubernetes name: amd64-main node_selector: # Ensure this runs on an amd64 runner - arch: amd64 + kubernetes.io/arch: amd64 trigger: # Only run on pushes to the main branch event: [ push ] branch: [ main ] @@ -24,7 +24,7 @@ kind: pipeline type: kubernetes name: arm64-main node_selector: # Ensure this runs on an arm64 runner - arch: arm64 + kubernetes.io/arch: arm64 trigger: # Only run on pushes to the main branch event: [ push ] branch: [ main ] @@ -45,7 +45,7 @@ kind: pipeline type: kubernetes name: amd64-tag node_selector: - arch: amd64 + kubernetes.io/arch: amd64 trigger: # Only run on creation of Git tags (releases) event: [ tag ] steps: @@ -66,7 +66,7 @@ kind: pipeline type: kubernetes name: arm64-tag node_selector: - arch: arm64 + kubernetes.io/arch: arm64 trigger: # Only run on creation of Git tags (releases) event: [ tag ] steps: @@ -87,7 +87,7 @@ type: kubernetes name: manifest-main # The manifest step can run on either architecture; we'll use amd64 for consistency node_selector: - arch: amd64 + kubernetes.io/arch: amd64 trigger: # Run on main branch pushes (to create "latest" manifest) event: [ push ] branch: [ main ] @@ -109,7 +109,7 @@ kind: pipeline type: kubernetes name: manifest-tag node_selector: - arch: amd64 + kubernetes.io/arch: amd64 trigger: # Run on tag events (to create versioned manifest) event: [ tag ] depends_on: