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