mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
22 lines
479 B
YAML
22 lines
479 B
YAML
name: 'Print backend hashes'
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
print-backend-sha:
|
|
runs-on: mempool-ci
|
|
name: Print backend hashes
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
|
|
with:
|
|
path: repo
|
|
|
|
- name: Run script
|
|
working-directory: repo
|
|
run: |
|
|
chmod +x ./scripts/get_backend_hash.sh
|
|
sh ./scripts/get_backend_hash.sh
|