From 73d39bc536519064cc2a9061b9f0f66928e29692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Placzy=C5=84ski?= Date: Fri, 7 Jun 2024 10:36:32 +0200 Subject: [PATCH] [#1195] Remove unnecessary deployment config dependancy In the provided user story, the goal was to troubleshoot the failure in the Toggle Maintenance Page workflow by ensuring that all necessary environment variables are present. The acceptance criteria focused on identifying and setting the required environment variables for the workflow to run successfully. However, the commit candidate addresses this by removing the unnecessary creation and upload of the deployment config for the toggle-maintenance target. By simplifying the process and adjusting the workflow configuration, the changes aim to streamline the execution of the toggle maintenance page workflow and prevent potential errors caused by missing environment variables that are not really required. --- scripts/govtool/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/govtool/Makefile b/scripts/govtool/Makefile index 236cb416c..c51d00eed 100644 --- a/scripts/govtool/Makefile +++ b/scripts/govtool/Makefile @@ -56,7 +56,7 @@ destroy-cardano-node-and-dbsync: prepare-config $(docker) volume rm $${volumes} .PHONY: toggle-maintenance -toggle-maintenance: docker-login prepare-config +toggle-maintenance: docker-login @:$(call check_defined, cardano_network) @:$(call check_defined, env) @:$(call check_defined, maintenance)