From c90620ac5f70398f6c8a7493d32accd4aa85a932 Mon Sep 17 00:00:00 2001 From: alvarof2 Date: Tue, 16 Apr 2024 11:01:29 +0200 Subject: [PATCH] BROADCAST --- .github/workflows/contracts.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/contracts.yml b/.github/workflows/contracts.yml index b5195560254c..e5446002bda2 100644 --- a/.github/workflows/contracts.yml +++ b/.github/workflows/contracts.yml @@ -5,7 +5,7 @@ on: - alvarof2/contracts workflow_dispatch: inputs: - simulate: + broadcast: required: false type: boolean default: true @@ -42,7 +42,7 @@ jobs: id-token: write contents: read env: - SIMULATE: ${{ github.event_name == 'push' && true || inputs.simulate }} + BROADCAST: ${{ github.event_name == 'push' && true || inputs.broadcast }} L1_RPC_KIND: ${{ github.event_name == 'push' && 'alchemy' || inputs.l1_rpc_kind }} DEPLOYMENT_CONTEXT: ${{ github.event_name == 'push' && 'test-alvaro' || inputs.deployment_context }} GS_ADMIN_ADDRESS: ${{ github.event_name == 'push' && '0x19c1696408E63d670ab8177bfafB0D37e9F3ed82' || inputs.gs_admin_address }} @@ -79,7 +79,7 @@ jobs: export IMPL_SALT=$(openssl rand -hex 32) cd packages/contracts-bedrock ./scripts/getting-started/config.sh - if [[ -z "${SIMULATE}" ]] || [[ $SIMULATE ]] + if [[ -z "${BROADCAST}" ]] || [[ $BROADCAST ]] then forge script scripts/Deploy.s.sol:Deploy --private-key $GS_ADMIN_PRIVATE_KEY --rpc-url $L1_RPC_URL --slow else