From c547ec14179737f801b3d0230b3a12f0b2a314cd Mon Sep 17 00:00:00 2001 From: Zanie Date: Wed, 25 Oct 2023 17:32:08 -0500 Subject: [PATCH] Combine reports into a single artifact again --- .github/workflows/ci.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d72b903542..8a1e249cf7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -222,6 +222,12 @@ jobs: ruff-ecosystem format $(which ruff) ./ruff --cache ./checkouts --output-format markdown | tee ecosystem-result-format cat ecosystem-result-format > $GITHUB_STEP_SUMMARY + - name: Combine ecosystem check results + run: | + cat ecosystem-result-check > ecosystem-result + echo "" >> ecosystem-result + cat ecosystem-result-format >> ecosystem-result + - name: Export pull request number run: | echo ${{ github.event.number }} > pr-number @@ -235,14 +241,8 @@ jobs: - uses: actions/upload-artifact@v3 name: Upload Results with: - name: ecosystem-result-check - path: ecosystem-result-check - - - uses: actions/upload-artifact@v3 - name: Upload Results - with: - name: ecosystem-result-format - path: ecosystem-result-format + name: ecosystem-result + path: ecosystem-result # cargo-udeps: