Skip to content

Commit

Permalink
fix: mnemonic needs quotes (#11429)
Browse files Browse the repository at this point in the history
  • Loading branch information
just-mitch authored Jan 22, 2025
1 parent 6f2e2e0 commit de8dad4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/network-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
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 }}
export MNEMONIC="${{ steps.get-mnemonic.outputs.mnemonic }}"
$REPO/yarn-project/end-to-end/scripts/bash/generate_devnet_config.sh
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
-var="GKE_CLUSTER_CONTEXT=${{ env.GKE_CLUSTER_CONTEXT }}" \
-var="AZTEC_DOCKER_IMAGE=${{ env.AZTEC_DOCKER_IMAGE }}" \
-var="L1_DEPLOYMENT_MNEMONIC=${{ steps.get-mnemonic.outputs.mnemonic }}" \
-lock=${{ inputs.respect_tf_lock }}
-lock=${{ inputs.respect_tf_lock }}
fi
- name: Terraform Plan
Expand Down
2 changes: 1 addition & 1 deletion spartan/aztec-network/files/config/deploy-l1-contracts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RETRY_DELAY=60

for attempt in $(seq 1 $MAX_RETRIES); do
# Construct base command
base_cmd="node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js deploy-l1-contracts"
base_cmd="LOG_LEVEL=debug node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js deploy-l1-contracts"

# Add account - use private key if set, otherwise use mnemonic
if [ -n "${L1_DEPLOYMENT_PRIVATE_KEY:-}" ]; then
Expand Down

0 comments on commit de8dad4

Please sign in to comment.