From 69a9b03fd9694e185b5d1450f1c534fb50ed4ab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Koz=C5=82owski?= Date: Tue, 26 Oct 2021 02:57:46 +0200 Subject: [PATCH] Fix typo in message (#168) --- src/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.ts b/src/github.ts index 21265d6..c12daf6 100644 --- a/src/github.ts +++ b/src/github.ts @@ -167,7 +167,7 @@ export const upload = async ( const json = await resp.json(); if (resp.status !== 201) { throw new Error( - `Failed to upload release asset ${name}. recieved status code ${ + `Failed to upload release asset ${name}. received status code ${ resp.status }\n${json.message}\n${JSON.stringify(json.errors)}` );