fix path for logs

This commit is contained in:
marcello33 2025-04-10 12:49:20 -07:00
parent 5973f5d3bd
commit 96f55f4ccf
No known key found for this signature in database
GPG key ID: 06128777E3C36B16

View file

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