Skip to content

Commit

Permalink
Fix syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Feb 4, 2025
1 parent 8834d44 commit 46460f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/run-ee-server/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ runs:

- name: Wait for container to be healthy
run: |
until [ "`docker inspect -f {{.State.Health.Status}} ${{ env.SERVER_CONTAINER_NAME }}`"=="healthy" ]; do
sleep 0.1;
done;
until [[ "$(docker inspect -f {{.State.Health.Status}} ${{ env.SERVER_CONTAINER_NAME }})" == "healthy" ]]; do
sleep 0.1
done
shell: bash

- run: echo SUPERUSER_NAME_AND_PASSWORD="superuser" >> $GITHUB_ENV
Expand Down

0 comments on commit 46460f6

Please sign in to comment.