mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
27 lines
586 B
YAML
27 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 }}
|