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