Skip to content

Commit 8ee0553

Browse files
committed
mitch/tmnt-226-create-deploy-staging-networkyml
1 parent d28ea7b commit 8ee0553

File tree

23 files changed

+988
-235
lines changed

23 files changed

+988
-235
lines changed

.github/local_workflow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ SA_KEY_JSON=$(cat "$GOOGLE_APPLICATION_CREDENTIALS")
3535

3636
mkdir -p $REPO_ROOT/.github/.act-tool-cache
3737

38-
act workflow_call -j $workflow_name \
38+
act -j $workflow_name \
3939
--env RUNNER_TOOL_CACHE=/work/toolcache \
4040
-s GITHUB_TOKEN="$(gh auth token)" \
4141
-s GCP_SA_KEY="$SA_KEY_JSON" \

.github/workflows/deploy-eth-devnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ on:
6969
required: false
7070
KUBECONFIG_B64:
7171
description: The base64 encoded kubeconfig
72-
required: true
72+
required: false
7373
outputs:
7474
rpc_url:
7575
description: The RPC URL for the eth devnet

.github/workflows/deploy-rollup-contracts.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ name: Deploy Rollup Contracts
1414
# lwfl deploy_rollup_contracts --input cluster=aztec-gke-private --input namespace=mitch-eth-devnet --input aztec_docker_image="iamjustmitch/aztec:8ebe8d7c45190b002c77e29358f2b307a23b5336" --input l1_rpc_urls="http://34.83.173.208:8545" --input mnemonic="test test test test test test test test test test test junk" --input l1_chain_id="1337" --input salt="456" --input sponsored_fpc=true --input real_verifier=true --input aztec_target_commitee_size=48
1515

1616
on:
17+
workflow_dispatch:
18+
inputs:
19+
salt:
20+
description: Salt for deployment
21+
required: true
22+
type: string
1723
workflow_call:
1824
inputs:
1925
cluster:
@@ -211,15 +217,23 @@ jobs:
211217
steps:
212218
- name: debug inputs
213219
run: |
220+
echo "${{ github.event.action }}"
221+
echo "${{ github.event_name }}"
222+
echo "${{ github.triggering_actor }}"
223+
echo "github.event.inputs.validators: ${{ github.event.inputs.validators }}"
214224
echo "cluster: ${{ inputs.cluster }}"
215225
echo "namespace: ${{ inputs.namespace }}"
216226
echo "ref: ${{ inputs.ref }}"
217227
echo "aztec_docker_image: ${{ inputs.aztec_docker_image }}"
218228
echo "l1_rpc_urls: ${{ inputs.l1_rpc_urls }}"
219-
echo "l1_chain_id: ${{ inputs.l1_chain_id }}"
229+
echo "inputs.l1_chain_id: ${{ inputs.l1_chain_id }}"
230+
echo "github.event.inputs.l1_chain_id: ${{ github.event.inputs.l1_chain_id }}"
220231
echo "validators: ${{ inputs.validators }}"
232+
echo "github.event.inputs.validators: ${{ github.event.inputs.validators }}"
221233
echo "sponsored_fpc: ${{ inputs.sponsored_fpc }}"
222234
echo "real_verifier: ${{ inputs.real_verifier }}"
235+
echo "salt: ${{ inputs.salt }}"
236+
echo "mnemonic: ${{ inputs.mnemonic }}"
223237
224238
- name: Setup K8s and Terraform
225239
uses: ./.github/actions/setup-k8s-terraform

.github/workflows/deploy-scenario-network.yml

Lines changed: 0 additions & 141 deletions
This file was deleted.

0 commit comments

Comments
 (0)