diff --git a/.github/workflows/uberjar.yml b/.github/workflows/uberjar.yml index f43654a2cf2befaa8bc07864463cff760711963c..9fa4fefc940e8ee8ff2ab4cd0d5af2b5452d4fae 100644 --- a/.github/workflows/uberjar.yml +++ b/.github/workflows/uberjar.yml @@ -70,7 +70,7 @@ jobs: - name: Launch uberjar run: java -jar ./target/uberjar/metabase.jar & - name: Wait for Metabase to start - run: while ! curl -s 'http://localhost:3000/api/health' | grep '{"status":"ok"}'; do sleep 1; done + run: while ! curl 'http://localhost:3000/api/health' | grep '{"status":"ok"}'; do sleep 1; done containerize_test_and_push_container: runs-on: ubuntu-22.04