From f8d89c0ca4b41660c7dd9a727d0dab56da86faf7 Mon Sep 17 00:00:00 2001 From: Kat Date: Mon, 4 Sep 2023 15:13:31 +0100 Subject: [PATCH] Cf push instead of restaging the app --- .github/workflows/review_pipeline.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/review_pipeline.yml b/.github/workflows/review_pipeline.yml index d5921e049..829cce995 100644 --- a/.github/workflows/review_pipeline.yml +++ b/.github/workflows/review_pipeline.yml @@ -99,9 +99,6 @@ jobs: cf api $CF_API_ENDPOINT cf auth cf target -o $CF_ORG -s $CF_SPACE - cf push $APP_NAME \ - --manifest ./config/cloud_foundry/review_manifest.yml \ - --no-start - name: Set environment variables env: @@ -162,7 +159,8 @@ jobs: env: APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }} run: | - cf restage $APP_NAME + cf push $APP_NAME --strategy rolling -t 180 \ + --manifest ./config/cloud_foundry/review_manifest.yml - name: Comment on PR with URL uses: unsplash/comment-on-pr@v1.3.0