This commit is contained in:
CrazyMax 2019-10-11 01:47:41 +02:00
parent 7c7fc1c5f6
commit 7cefd30345
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
2 changed files with 2 additions and 4 deletions

View File

@ -73,7 +73,7 @@ function run() {
`master:${target_branch}` `master:${target_branch}`
]); ]);
process.chdir(process.env['GITHUB_WORKSPACE'] || '.'); 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) { catch (error) {
core.setFailed(error.message); core.setFailed(error.message);

View File

@ -62,9 +62,7 @@ async function run() {
]); ]);
process.chdir(process.env['GITHUB_WORKSPACE'] || '.'); process.chdir(process.env['GITHUB_WORKSPACE'] || '.');
core.info( core.info(`🎉 Content of ${build_dir} has been deployed to GitHub Pages.`);
`🎉 Content of $INPUT_BUILD_DIR has been deployed to GitHub Pages.`
);
} catch (error) { } catch (error) {
core.setFailed(error.message); core.setFailed(error.message);
} }