From 7cefd30345a01607b96b3f00a53f26fa6407df06 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 11 Oct 2019 01:47:41 +0200 Subject: [PATCH] Typo --- lib/main.js | 2 +- src/main.ts | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/main.js b/lib/main.js index ec0cbf0..f36fb10 100644 --- a/lib/main.js +++ b/lib/main.js @@ -73,7 +73,7 @@ function run() { `master:${target_branch}` ]); process.chdir(process.env['GITHUB_WORKSPACE'] || '.'); - core.info(`🎉 Content of $INPUT_BUILD_DIR has been deployed to GitHub Pages.`); + core.info(`🎉 Content of ${build_dir} has been deployed to GitHub Pages.`); } catch (error) { core.setFailed(error.message); diff --git a/src/main.ts b/src/main.ts index 98f521d..cffb239 100644 --- a/src/main.ts +++ b/src/main.ts @@ -62,9 +62,7 @@ async function run() { ]); process.chdir(process.env['GITHUB_WORKSPACE'] || '.'); - core.info( - `🎉 Content of $INPUT_BUILD_DIR has been deployed to GitHub Pages.` - ); + core.info(`🎉 Content of ${build_dir} has been deployed to GitHub Pages.`); } catch (error) { core.setFailed(error.message); }