From d9ba9a82087c975d0a7078c4097d3dcab6789016 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sun, 5 May 2024 14:35:40 +0200 Subject: [PATCH] ci: Avoid devel release failure when no assets to clean up exist --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b4eec5bfd..1ff6a570c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -233,7 +233,7 @@ jobs: # then modify the release, then add the new assets. gh release view devel --json assets \ | jq -r '.assets[] | .name' \ - | xargs -n1 \ + | xargs -rn1 \ gh release delete-asset -y devel gh release edit devel \ -t devel \