mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 14:40:38 +01:00
26 lines
586 B
YAML
26 lines
586 B
YAML
name: 'Print images digest'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Image Version'
|
|
required: false
|
|
default: 'latest'
|
|
type: string
|
|
jobs:
|
|
print-images-sha:
|
|
runs-on: 'ubuntu-latest'
|
|
name: Print digest for images
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: digest
|
|
|
|
- name: Run script
|
|
working-directory: digest
|
|
run: |
|
|
sh ./docker/scripts/get_image_digest.sh $VERSION
|
|
env:
|
|
VERSION: ${{ github.event.inputs.version }}
|