Skip to content

Commit

Permalink
feat(workflows): add setup-docker-and-run-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
basarbyz committed Jul 25, 2024
1 parent f037ae0 commit 42f7e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/setup-docker-and-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Get Docker container IP
id: get-ip
run: |
CONTAINER_ID = $(docker ps -q --filter "name=mqtt_gateway_api")
CONTAINER_ID=$(docker ps -q --filter "name=mqtt_gateway_api")
CONTAINER_IP=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $CONTAINER_ID)
echo "CONTAINER_IP=$CONTAINER_IP" >> $GITHUB_ENV
Expand Down

0 comments on commit 42f7e49

Please sign in to comment.