From 5f3c785eade83fb705041c6e021659aa6f15f911 Mon Sep 17 00:00:00 2001 From: Piwccle Date: Wed, 24 Sep 2025 18:22:46 +0200 Subject: [PATCH] fix: update GCS storage provider configuration to use GCP in backend integration tests --- .github/workflows/backend-integration-test.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend-integration-test.yaml b/.github/workflows/backend-integration-test.yaml index 2e6312f..83d243b 100644 --- a/.github/workflows/backend-integration-test.yaml +++ b/.github/workflows/backend-integration-test.yaml @@ -118,7 +118,8 @@ jobs: strategy: fail-fast: false matrix: - storage-provider: [s3, abs, gcs] + #storage-provider: [s3, abs, gcs] + storage-provider: [gcs] timeout-minutes: 30 steps: - name: Setup Node.js @@ -148,7 +149,7 @@ jobs: echo "Using GCS storage provider" yq e -i ' del(.storage.s3) | - .storage.gcs = { + .storage.gcp = { "credentials_json": "${{ secrets.GCP_CREDENTIALS_JSON }}", "bucket_name": "openvidu-appdata" }