We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f45307 commit 938cb32Copy full SHA for 938cb32
tests.sh
@@ -26,15 +26,16 @@ if ! [ -x "$(command -v jq)" ]; then
26
sudo apt -y install jq
27
fi
28
29
-message " Check if we're in Github Actions "
+message " Check if we're in Github Actions or local run "
30
if [ -n "${GITHUB_ACTIONS:-}" ]; then
31
+ echo " Github Actions. Image should already be built."
32
docker images
33
if [ -z "$(docker images -q mendhak/http-https-echo:testing 2> /dev/null)" ]; then
34
echo "Docker image mendhak/http-https-echo:testing not found. Exiting."
35
exit 1
36
37
else
- message " Local run. Build image "
38
+ echo " Local run. Build image "
39
docker build -t mendhak/http-https-echo:testing .
40
41
0 commit comments