From 68367b4640fdca3152198cbfa4c4bb7dd98c0d16 Mon Sep 17 00:00:00 2001 From: Andrew Roth Date: Tue, 18 Feb 2025 14:47:30 -0800 Subject: [PATCH] refactor(tasks): remove redundant create-package tasks Simplified task definitions by removing unnecessary `create-dev-package` and `create:package` steps. These actions were redundant as the required package creation is covered elsewhere in the workflow. This change improves task clarity and prevents automated actions from building the same zarf package twice. --- tasks.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tasks.yaml b/tasks.yaml index 44d44e9..bb6f61d 100644 --- a/tasks.yaml +++ b/tasks.yaml @@ -18,7 +18,6 @@ tasks: - name: default description: Setup k3d cluster, deploy package actions: - - task: create-dev-package - task: setup:k3d-test-cluster - task: create-deploy-test-bundle @@ -50,7 +49,6 @@ tasks: - name: test-install description: Test deploying the current branch to a new cluster actions: - - task: create-dev-package - task: setup:k3d-test-cluster - task: create-deploy-test-bundle # - task: compliance:validate @@ -69,9 +67,6 @@ tasks: - name: publish-package description: Build and publish the packages actions: - - description: Create the package - task: create:package - - description: Setup the cluster task: setup:k3d-test-cluster