From ce8a4c3132a6c2710431ed714387ce8070685dc8 Mon Sep 17 00:00:00 2001 From: Justin Brower Date: Mon, 9 Sep 2024 17:31:18 -0400 Subject: [PATCH] clean up --- .github/workflows/deploy-local.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/deploy-local.yml b/.github/workflows/deploy-local.yml index 45c080cc2..4883c4a1b 100644 --- a/.github/workflows/deploy-local.yml +++ b/.github/workflows/deploy-local.yml @@ -21,25 +21,6 @@ jobs: fail-fast: false steps: - - name: Load issue number - uses: actions/github-script@v6 - id: get_issue_number - with: - script: | - if (context.issue && context.issue.number) { - // Return issue number if present - return context.issue.number; - } else { - // Otherwise return issue number from commit - return ( - await github.rest.repos.listPullRequestsAssociatedWithCommit({ - commit_sha: context.sha, - owner: context.repo.owner, - repo: context.repo.repo, - }) - ).data[0].number; - } - result-encoding: string - name: Checkout code uses: actions/checkout@v2 - name: Install lcov @@ -58,9 +39,7 @@ jobs: ANVIL_PID=$! echo "---Waiting for anvil to start..." sleep 10 # Give Anvil some time to start - export RPC_URL="http://127.0.0.1:8545" - echo "Extracted PRIVATE_KEY: $PRIVATE_KEY" echo "---Deploying Contracts" RUST_LOG=forge,foundry=trace forge script script/deploy/local/Deploy_From_Scratch.s.sol \