From 09499853a52cb6536600789802ba27604e8f0a8d Mon Sep 17 00:00:00 2001 From: marcello33 Date: Thu, 10 Apr 2025 12:48:58 -0700 Subject: [PATCH] fix path for logs --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55b1b44ee9..589734f3f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -275,13 +275,17 @@ jobs: echo "Starting RPC Tests..." timeout 5m bash bor/integration-tests/rpc_test.sh + - name: Resolve absolute path for logs + id: pathfix + run: | + echo "ABS_LOG_PATH=$(realpath matic-cli/devnet/logs)" >> $GITHUB_ENV + - name: Upload logs if: always() - - uses: PaloAltoNetworks/upload-secure-artifact@main + uses: PaloAltoNetworks/upload-secure-artifact@main with: name: logs_${{ github.run_id }} - path: | - matic-cli/devnet/logs + path: ${{ env.ABS_LOG_PATH }} - name: Package code and chain data if: always()