From 8fca20b34fad2bbe4392d4291e09f109db03b91d Mon Sep 17 00:00:00 2001 From: Antoine Barthelemy Date: Thu, 24 Oct 2024 01:30:17 +0200 Subject: [PATCH] fix(ci): sed regular expression error --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c79d063..fb55f40 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 #4.2.1 - id: ls run: | - echo files="$(ls scripts/ | sed 's/.sh//' | xargs jq -c -n '$ARGS.positional' --args)" >> "$GITHUB_OUTPUT" + echo files="$(ls scripts/ | sed 's/\.sh//' | xargs jq -c -n '$ARGS.positional' --args)" >> "$GITHUB_OUTPUT" test: needs: list