Skip to content

Commit a44cdec

Browse files
committed
chore: release action fix
1 parent 9dba4b3 commit a44cdec

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/config/pre_changelog_hook.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ exports.preVersionGeneration = (version) => {
2222
core.info(`Updated gem info: ${new_gem_info}`);
2323
fs.writeFileSync(gem_info_file, new_gem_info);
2424

25-
const launchOption = { cwd: GITHUB_WORKSPACE };
25+
const launchOption = {
26+
cwd: GITHUB_WORKSPACE,
27+
env: Object.assign({}, process.env, { 'LANG': 'en_US.UTF-8' })
28+
};
29+
2630
childProcess.execSync('bundle config unset deployment', launchOption);
2731
childProcess.execSync('bundle install', launchOption);
2832
childProcess.execSync('bundle exec rake demo', launchOption);

0 commit comments

Comments
 (0)