Merge pull request #3408 from knorrium/gha_docker_digest
Docker digest GHA
This commit is contained in:
commit
c9f4bdda17
26
.github/workflows/get_image_digest.yml
vendored
Normal file
26
.github/workflows/get_image_digest.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
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 }}
|
Loading…
x
Reference in New Issue
Block a user