diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 4c45d2b..f794875 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/owprov/$PR_BRANCH_TAG" + curl -s -uucentral:${{ secrets.DOCKER_REGISTRY_PASSWORD }} -X DELETE "https://tip.jfrog.io/artifactory/tip-wlan-cloud-ucentral/owprov/$PR_BRANCH_TAG" else echo "PR branch is $PR_BRANCH_TAG, not deleting Docker image" fi