mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 14:16:44 +00:00
fix path for logs
This commit is contained in:
parent
5973f5d3bd
commit
96f55f4ccf
1 changed files with 6 additions and 2 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue