From d2d60c2b48592a39cde0fdacc05c7e2a601cc356 Mon Sep 17 00:00:00 2001 From: Dimitar Manov <99065541+dimitarmanov@users.noreply.github.com> Date: Wed, 11 Jun 2025 13:57:44 +0300 Subject: [PATCH] test --- .github/workflows/ci-deploy.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-deploy.yaml b/.github/workflows/ci-deploy.yaml index a2cf7ac81b..52343d773a 100644 --- a/.github/workflows/ci-deploy.yaml +++ b/.github/workflows/ci-deploy.yaml @@ -79,13 +79,13 @@ jobs: - name: Start Contracts Geth Devnet run: | - docker run -d - -p 8546:8545 - -p 30303:30303 - ${{ secrets.DOCKERHUB_USERNAME }}/${{ env.REPO_NAME }}:${{ env.ENVIRONMENT }}-contracts-latest - --dev - --http --http.addr 0.0.0.0 - --http.api eth,net,web3 + docker run -d \ + -p 8546:8545 \ + -p 30303:30303 \ + ${{ secrets.DOCKERHUB_USERNAME }}/${{ env.REPO_NAME }}:${{ env.ENVIRONMENT }}-contracts-latest \ + --dev \ + --http --http.addr 0.0.0.0 \ + --http.api eth,net,web3 \ --allow-insecure-unlock - name: Wait for Contracts Geth JSON-RPC