From 1b0591def85612c856c70cc17c0d211f2a47e470 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Wed, 7 Feb 2024 16:17:12 -0500 Subject: [PATCH] fix gha breaking change --- .github/workflows/check-api-for-breaking-changes.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-api-for-breaking-changes.yml b/.github/workflows/check-api-for-breaking-changes.yml index 8a2db76ee1..de0e0eb8cf 100644 --- a/.github/workflows/check-api-for-breaking-changes.yml +++ b/.github/workflows/check-api-for-breaking-changes.yml @@ -32,9 +32,9 @@ jobs: - name: Start the server run: docker run --name infisical-api -d -p 4000:4000 -e DB_CONNECTION_URI=$DB_CONNECTION_URI -e REDIS_URL=$REDIS_URL -e JWT_AUTH_SECRET=$JWT_AUTH_SECRET --entrypoint '/bin/sh' infisical-api -c "npm run migration:latest && ls && node dist/main.mjs" env: - REDIS_URL=redis://host.docker.internal:6379 - DB_CONNECTION_URI=postgres://infisical:infisical@host.docker.internal:5432/infisical?sslmode=disable - JWT_AUTH_SECRET=something-random + REDIS_URL: redis://host.docker.internal:6379 + DB_CONNECTION_URI: postgres://infisical:infisical@host.docker.internal:5432/infisical?sslmode=disable + JWT_AUTH_SECRET: something-random - name: Install openapi api diff run: npm install -g openapi-diff - name: Wait for containers to be stable