Skip to content

Commit

Permalink
test: check CI artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoloklom committed Nov 14, 2024
1 parent 288123b commit 1f6ca62
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ jobs:
check-artifacts:
runs-on: ubuntu-latest
needs:
# - tests
# - debug
- tests
- debug
- build
- build_sea

Expand All @@ -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: |
Expand Down

0 comments on commit 1f6ca62

Please sign in to comment.