From 1f6ca62c6ae3e835463a9a111e79fe0e5d3465bf Mon Sep 17 00:00:00 2001 From: Sergey Kupletsky Date: Thu, 14 Nov 2024 14:47:54 +0100 Subject: [PATCH] test: check CI artifacts --- .github/workflows/main.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d8d683..19e6ef2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -140,8 +140,8 @@ jobs: check-artifacts: runs-on: ubuntu-latest needs: -# - tests -# - debug + - tests + - debug - build - build_sea @@ -151,8 +151,17 @@ jobs: - name: Download Artifacts uses: actions/download-artifact@v4 - with: - path: ./ + + - name: Organize downloaded artifacts + run: | + mv build-artifacts/* . + + mkdir ./sea + for dir in build-sea-artifacts-*; do + if [ -d "$dir/sea" ]; then + cp -rT "$dir/sea" ./sea + fi + done - name: check run: |