From 45a1d6e8f9f25e4db666757534fd3cd00397dd0c Mon Sep 17 00:00:00 2001 From: Phil Lee Date: Mon, 28 Nov 2022 15:30:22 +0000 Subject: [PATCH] bind S3 buckets for review apps --- .github/workflows/review_pipeline.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/review_pipeline.yml b/.github/workflows/review_pipeline.yml index 22f99afde..603a8315c 100644 --- a/.github/workflows/review_pipeline.yml +++ b/.github/workflows/review_pipeline.yml @@ -145,6 +145,14 @@ jobs: run: | cf bind-service $APP_NAME $SERVICE_NAME --wait + - name: Bind S3 buckets services + env: + APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }} + run: | + cf bind-service $APP_NAME dluhc-core-review-csv-bucket --wait + cf bind-service $APP_NAME dluhc-core-review-export-bucket --wait + cf bind-service $APP_NAME dluhc-core-review-import-bucket --wait + - name: Start review app env: APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }}