From 0cfd0fe72fb52dcb00eec26294b7d434a673992a Mon Sep 17 00:00:00 2001 From: just-mitch <68168980+just-mitch@users.noreply.github.com> Date: Wed, 29 Jan 2025 08:57:56 -0500 Subject: [PATCH] fix: unbound var in network deploy (#11587) generate_devnet_config now expects a values filename as an arg. --- .github/workflows/network-deploy.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/network-deploy.yml b/.github/workflows/network-deploy.yml index a0200122428..b6564e80e49 100644 --- a/.github/workflows/network-deploy.yml +++ b/.github/workflows/network-deploy.yml @@ -159,12 +159,9 @@ jobs: run: | REPO=$(git rev-parse --show-toplevel) - export VALUES_PATH="$REPO/spartan/aztec-network/values/${{ env.VALUES_FILE }}" - export DEFAULT_VALUES_PATH="$REPO/spartan/aztec-network/values.yaml" - export MNEMONIC="${{ steps.get-mnemonic.outputs.mnemonic }}" - $REPO/spartan/scripts/generate_devnet_config.sh + $REPO/spartan/scripts/generate_devnet_config.sh ${{ env.VALUES_FILE }} - name: Setup Terraform uses: hashicorp/setup-terraform@v2