Skip to content

Commit

Permalink
fix: use tc.host instead of docker.host (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle authored Oct 20, 2023
1 parent ed2ba4b commit 5f9b239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 5f9b239

Please sign in to comment.