From 5f9b23926664e3ab61ee5a4b748fb2338b9627f6 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Fri, 20 Oct 2023 10:21:32 -0700 Subject: [PATCH] fix: use tc.host instead of docker.host (#398) --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4007ebf1..64e90f4a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -119,9 +119,9 @@ jobs: wait: true token: ${{ secrets.TC_CLOUD_TOKEN }} - - name: Setup Remote Docker + - name: Configure Remote Docker Host if: ${{ matrix.os == 'macos-latest' }} - run: echo "DOCKER_HOST=$(cat ~/.testcontainers.properties | grep 'docker.host' | cut -d '=' -f2 | xargs)" >> $GITHUB_ENV + run: echo "DOCKER_HOST=$(grep 'tc.host' ~/.testcontainers.properties | cut -d '=' -f2 | xargs)" >> $GITHUB_ENV - name: bazel test //... working-directory: ${{ matrix.folder }}