From bd2057f501aff4c8b45ed30a603c76f16971bd7c Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 8 May 2020 15:12:39 +0200 Subject: [PATCH] Typo --- CHANGELOG.md | 4 ++++ dist/index.js | 2 +- src/github.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b125b65a..06d58eec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.6.1 (2020/05/08) + +* Typo + ## 1.6.0 (2020/05/07) * Use native GitHub Action tools to download assets and use GitHub API diff --git a/dist/index.js b/dist/index.js index 869f1473..545809bd 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4761,7 +4761,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); const httpm = __importStar(__webpack_require__(539)); exports.getRelease = (version) => __awaiter(void 0, void 0, void 0, function* () { const url = `https://github.com/docker/buildx/releases/${version}`; - const http = new httpm.HttpClient('ghaction-hugo'); + const http = new httpm.HttpClient('ghaction-docker-buildx'); return (yield http.getJson(url)).result; }); //# sourceMappingURL=github.js.map diff --git a/src/github.ts b/src/github.ts index 0ba854ba..abd797ea 100644 --- a/src/github.ts +++ b/src/github.ts @@ -7,6 +7,6 @@ export interface GitHubRelease { export const getRelease = async (version: string): Promise => { const url: string = `https://github.com/docker/buildx/releases/${version}`; - const http: httpm.HttpClient = new httpm.HttpClient('ghaction-hugo'); + const http: httpm.HttpClient = new httpm.HttpClient('ghaction-docker-buildx'); return (await http.getJson(url)).result; };