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: |