From a99c2fe13d1fcbc3f53e1489226aa3e4871467fb Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 20 Mar 2025 11:09:52 -0700 Subject: [PATCH] ugh revert and fix --- .github/workflows/restage-apps.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/restage-apps.yml b/.github/workflows/restage-apps.yml index b1bc08bf7..66e70bc39 100644 --- a/.github/workflows/restage-apps.yml +++ b/.github/workflows/restage-apps.yml @@ -18,6 +18,9 @@ jobs: matrix: app: ["api", "admin"] steps: + - name: get pwd + shell: bash + run: echo "$PWD" >> "$GITHUB_OUTPUT" - name: Restage ${{matrix.app}} uses: cloud-gov/cg-cli-tools@main with: @@ -26,7 +29,7 @@ jobs: cf_org: gsa-tts-benefits-studio cf_space: notify-${{ inputs.environment }} command: | - echo "$PWD" + ls ls /home/runner/work/notifications-api/notifications-api/manifest.yml && cf push notify-${{matrix.app}}-${{inputs.environment}} -f /home/runner/work/notifications-api/notifications-api/manifest.yml cf restage --strategy rolling notify-${{matrix.app}}-${{inputs.environment}} - name: Restage ${{matrix.app}} egress