Update action.yaml

This commit is contained in:
uazo 2021-07-11 12:59:31 +02:00 committed by GitHub
parent b9c6c689c2
commit 4e5b6df9d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,8 @@ runs:
shell: bash
run: |
VERSION="${{ inputs.version }}"
IS_PRESENT=$(docker inspect --type=image uazo/build-deps:$VERSION > /dev/null ; echo $?)
if [ $IS_PRESENT -ne "0" ]; then
IS_PRESENT=$(docker manifest inspect uazo/build-deps:$VERSION > /dev/null ; echo $?)
if [ $IS_PRESENT -ne "0" ]; then
echo "Image not found"
@ -27,3 +29,4 @@ runs:
popd
rm -rf build-repo
fi
fi