From e5e96491d1b56344239864042033a730526e1493 Mon Sep 17 00:00:00 2001 From: Milamary Date: Tue, 2 Apr 2024 21:46:52 -0700 Subject: [PATCH] ARC runners: added Deploy Response step --- .github/workflows/deploy-on-demand-v2.yml | 3 +++ .github/workflows/deploy-on-demand.yml | 3 +++ .github/workflows/deploy.yml | 2 -- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-on-demand-v2.yml b/.github/workflows/deploy-on-demand-v2.yml index 880d6a1..7272689 100644 --- a/.github/workflows/deploy-on-demand-v2.yml +++ b/.github/workflows/deploy-on-demand-v2.yml @@ -113,6 +113,9 @@ jobs: --set image.tag=$TAG \ --wait -i -f k8s/values-${{ inputs.environment }}.yaml $PROJECT k8s/ + - name: Deploy Response + run: echo "Response was ${{ steps.deploy.outputs.response }}" + - name: Notify deploy failure if: ${{ failure() }} uses: rtCamp/action-slack-notify@v2 diff --git a/.github/workflows/deploy-on-demand.yml b/.github/workflows/deploy-on-demand.yml index f7ff110..e5ac63e 100644 --- a/.github/workflows/deploy-on-demand.yml +++ b/.github/workflows/deploy-on-demand.yml @@ -110,6 +110,9 @@ jobs: --set image.tag=$TAG-${{ inputs.environment }} \ --wait -i -f k8s/values-${{ inputs.environment }}.yaml $PROJECT k8s/ + - name: Deploy Response + run: echo "Response was ${{ steps.deploy.outputs.response }}" + - name: Notify deploy failure if: ${{ failure() }} uses: rtCamp/action-slack-notify@v2 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 108e579..1400ca8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -95,7 +95,6 @@ jobs: - name: Deploy Response run: echo "Response was ${{ steps.deploy.outputs.response }}" - - name: Notify deploy failure if: ${{ failure() }} uses: rtCamp/action-slack-notify@v2 @@ -362,7 +361,6 @@ jobs: - name: Deploy Response run: echo "Response was ${{ steps.deploy.outputs.response }}" - - name: Notify deploy failure if: ${{ failure() }} uses: rtCamp/action-slack-notify@v2