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()