From 96f55f4ccf5a7b562864d55af25a669adb9428da Mon Sep 17 00:00:00 2001 From: marcello33 Date: Thu, 10 Apr 2025 12:49:20 -0700 Subject: [PATCH] fix path for logs --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 220524799f..afd3997662 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -250,13 +250,17 @@ jobs: cd - timeout 60m bash bor/integration-tests/smoke_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 with: name: logs_${{ github.run_id }} - path: | - matic-cli/devnet/logs + path: ${{ env.ABS_LOG_PATH }} - name: Package code and chain data if: always()