From 53a3de1ebcf420f2eef726ac604ff25acc880742 Mon Sep 17 00:00:00 2001 From: Johann Hoffmann Date: Fri, 17 Jun 2022 13:52:04 +0200 Subject: [PATCH] Supress curl output in PR cleanup workflow Signed-off-by: Johann Hoffmann --- .github/workflows/cleanup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 23728b7..536bb7d 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -20,7 +20,7 @@ jobs: if [[ ! $PR_BRANCH_TAG =~ (main|master|release-*) ]]; then echo "PR branch is $PR_BRANCH_TAG, deleting Docker image" - curl -uucentral:${{ secrets.DOCKER_REGISTRY_PASSWORD }} -X DELETE "https://tip.jfrog.io/artifactory/tip-wlan-cloud-ucentral/owgw-ui/$PR_BRANCH_TAG" + curl -s -uucentral:${{ secrets.DOCKER_REGISTRY_PASSWORD }} -X DELETE "https://tip.jfrog.io/artifactory/tip-wlan-cloud-ucentral/owgw-ui/$PR_BRANCH_TAG" else echo "PR branch is $PR_BRANCH_TAG, not deleting Docker image" fi