From 79f76e4e3f3ebd9462b2c13a379316c7e7a23a9e Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Fri, 27 Mar 2020 00:30:46 +0100 Subject: [PATCH] workflows: consider all artifacts --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e3f2730..f3339cb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,5 +46,5 @@ jobs: artifacts_directory: artifacts - name: Check files run: | - ls -lh artifacts/${{matrix.package}}_*.* - ls -lh ${{matrix.package}}_*.* && false || true + ls -lh artifacts/${{matrix.package}}*.* + ls -lh ${{matrix.package}}*.* && false || true