Skip to content

Commit d9686ee

Browse files
committed
add github output warnings
1 parent f12e45b commit d9686ee

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

.github/workflows/build-docker.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,10 @@ jobs:
7171
run: |
7272
CDN_URL="https://downloads.getmonero.org"
7373
if ! wget --spider -q "$CDN_URL/hashes-$VERSION"; then
74-
echo "Webseed FAILED: hashes-$VERSION"
75-
#exit 1
74+
echo "::warning title=Torrent-Webseed-URLs::FAILED: $CDN_URL/hashes-$VERSION"
7675
fi
7776
if ! wget --spider -q "$CDN_URL/hashes-$VERSION_GUI"; then
78-
echo "Webseed FAILED: hashes-$VERSION_GUI"
79-
#exit 1
77+
echo "::warning title=Torrent-Webseed-URLs::FAILED: $CDN_URL/hashes-$VERSION_GUI"
8078
fi
8179
for file in $(awk '/monero-/ {print $2}' "hashes.txt"); do
8280
dir=cli
@@ -87,10 +85,7 @@ jobs:
8785
fi
8886
url=$CDN_URL/${part}/${dir}/${file}
8987
if ! wget --spider -q "$url"; then
90-
echo "Webseed FAILED: $url"
91-
#exit 1
92-
else
93-
echo "Webseed OK: $url"
88+
echo "::warning title=Torrent-Webseed-URLs::FAILED: $url"
9489
fi
9590
done
9691

0 commit comments

Comments
 (0)