From 80ba4b41543c01100ce1a371429778287730853b Mon Sep 17 00:00:00 2001 From: Ferronn Date: Sat, 5 Nov 2022 13:59:14 +0000 Subject: [PATCH] nope --- index.html | 5 ++++- index.js | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 index.js diff --git a/index.html b/index.html index 25873d9..4ead0df 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,8 @@ + +Wowless + -Coming soon... + diff --git a/index.js b/index.js new file mode 100644 index 0000000..4b8384e --- /dev/null +++ b/index.js @@ -0,0 +1,5 @@ +fetch("https://api.github.com/repos/wowless/wowless/actions/artifacts?name=test-results&per_page=1") + .then(res => res.json()) + .then(json => fetch(json.artifacts[0].archive_download_url)) + .then(res => res.text()) + .then(body => document.body.append(body.length))