Skip to content

Commit 7cefd30

Browse files
committed
Typo
1 parent 7c7fc1c commit 7cefd30

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function run() {
7373
`master:${target_branch}`
7474
]);
7575
process.chdir(process.env['GITHUB_WORKSPACE'] || '.');
76-
core.info(`🎉 Content of $INPUT_BUILD_DIR has been deployed to GitHub Pages.`);
76+
core.info(`🎉 Content of ${build_dir} has been deployed to GitHub Pages.`);
7777
}
7878
catch (error) {
7979
core.setFailed(error.message);

src/main.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ async function run() {
6262
]);
6363

6464
process.chdir(process.env['GITHUB_WORKSPACE'] || '.');
65-
core.info(
66-
`🎉 Content of $INPUT_BUILD_DIR has been deployed to GitHub Pages.`
67-
);
65+
core.info(`🎉 Content of ${build_dir} has been deployed to GitHub Pages.`);
6866
} catch (error) {
6967
core.setFailed(error.message);
7068
}

0 commit comments

Comments
 (0)