mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 22:58:30 +01:00
19 lines
422 B
YAML
19 lines
422 B
YAML
name: 'Check if servers are in sync'
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
print-backend-sha:
|
|
runs-on: 'ubuntu-latest'
|
|
name: Get block height
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: repo
|
|
|
|
- name: Run script
|
|
working-directory: repo
|
|
run: |
|
|
chmod +x ./scripts/get_block_tip_height.sh
|
|
sh ./scripts/get_block_tip_height.sh
|