mycroforge-docs/test.sh
mdnapo fd04ffbc19
All checks were successful
Build a new image for the MycroForge docs / test (push) Successful in 26s
Added build pipeline
2024-10-13 14:25:25 +02:00

12 lines
233 B
Bash
Executable File

#!/bin/bash
EXISTS=$(docker manifest inspect git.devdisciples.com/devdisciples/m4gdocs:latests > /dev/null 2>&1; echo $?)
echo $EXISTS
if [[ $EXISTS -eq 1 ]]; then
echo "Image does not exist."
else
echo "Image exists."
fi