Browse Source

bind S3 buckets for review apps (#1037)

pull/1041/head
Phil Lee 2 years ago committed by GitHub
parent
commit
5bd41fae99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/review_pipeline.yml

8
.github/workflows/review_pipeline.yml

@ -145,6 +145,14 @@ jobs:
run: | run: |
cf bind-service $APP_NAME $SERVICE_NAME --wait 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 - name: Start review app
env: env:
APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }} APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }}

Loading…
Cancel
Save