Skip to content

Commit

Permalink
feat: upload explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
kylezs committed Jun 10, 2024
1 parent cca3493 commit a378a77
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/_40_post_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
./run.sh
- name: Write chain explorer to file 📝
if: failure()
if: always()
continue-on-error: true
working-directory: bouncer
run: |
Expand All @@ -135,7 +135,15 @@ jobs:
http://localhost:9944 \
| jq -r '.result.number' \
| xargs printf "%d\n")
./commands/explorer.ts 0 $BLOCK_HEIGHT
./commands/explorer.ts 0 $BLOCK_HEIGHT > /tmp/chainflip/explorer.txt
- name: Upload chain explorer 📤
if: always()
continue-on-error: true
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
with:
name: chain-explorer
path: /tmp/chainflip/explorer.txt

- name: Print chainflip-engine logs 🚗
if: always()
Expand Down

0 comments on commit a378a77

Please sign in to comment.