mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 18:32:19 +01:00
20 lines
410 B
YAML
20 lines
410 B
YAML
name: 'Print backend hashes'
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
print-backend-sha:
|
|
runs-on: 'ubuntu-latest'
|
|
name: Print backend hashes
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: repo
|
|
|
|
- name: Run script
|
|
working-directory: repo
|
|
run: |
|
|
chmod +x ./scripts/get_backend_hash.sh
|
|
sh ./scripts/get_backend_hash.sh
|