From 662ab006bae40b40eb3ef424b49151d3ce0863f4 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 29 Sep 2024 04:15:58 +0200 Subject: [PATCH] action.yml: fix failing CI https://github.com/lycheeverse/lychee/actions/runs/11086039205/job/30803129371 --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 84a985b..535e0e8 100644 --- a/action.yml +++ b/action.yml @@ -56,7 +56,8 @@ runs: tar -xvzf "$filename" rm "$filename" install -t "$HOME/.local/bin" -D lychee - rm -f lychee* + shopt -s extglob + rm -f lychee*!(lychee-bin|lychee-lib) echo "$HOME/.local/bin" >> "$GITHUB_PATH" shell: bash - name: Run lychee