You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const res = await fetch('https://api.github.com/repos/aklomp/base64/releases/latest');
13
16
if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res });
@@ -39,8 +42,13 @@ trap cleanup INT TERM EXIT
39
42
40
43
cd"$WORKSPACE"
41
44
45
+
BASE64_TARBALL="base64-v$NEW_VERSION.tar.gz"
46
+
42
47
echo"Fetching base64 source archive"
43
-
curl -sL "https://api.github.com/repos/aklomp/base64/tarball/v$NEW_VERSION"| tar xzf -
const res = await fetch('https://api.github.com/repos/google/brotli/releases/latest');
13
16
if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res });
const res = await fetch('https://api.github.com/repos/c-ares/c-ares/releases/latest');
13
16
if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res });
curl -sL "https://github.com/c-ares/c-ares/releases/download/$ARES_REF/$ARES_TARBALL"| tar xz
const res = await fetch('https://api.github.com/repos/nodejs/llhttp/releases/latest');
14
17
if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res });
@@ -52,19 +55,20 @@ if echo "$NEW_VERSION" | grep -qs "/" ; then # Download a release
const res = await fetch('https://api.github.com/repos/nghttp2/nghttp2/releases/latest');
13
16
if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res });
0 commit comments