From becb8497dca10b959e2fbe8f1ac3f38215ac9ce3 Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Fri, 14 Jul 2023 09:33:36 -0700 Subject: [PATCH] Suppress delete command output to file --- .github/workflows/demo-preview-destroy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/demo-preview-destroy.yml b/.github/workflows/demo-preview-destroy.yml index 543ebc534a..e9f983ac79 100644 --- a/.github/workflows/demo-preview-destroy.yml +++ b/.github/workflows/demo-preview-destroy.yml @@ -39,7 +39,7 @@ jobs: # This will succeed even if the app doesn't exist / has already been deleted - name: 'Delete App Service App (which will also delete the App Service plan)' run: | - az container delete -n ${{ env.APP_NAME }} -g primer -y + az container delete -n ${{ env.APP_NAME }} -g primer -y > output.log # Untag all images under this PR's container registry repo - the container registry will automatically remove untagged images. # This will fail if the IMAGE_REPO doesn't exist, but we don't care - name: 'Untag all docker images for this PR'