Update generated content

This commit is contained in:
crazy-max 2020-05-12 18:19:34 +00:00
parent ccc720bb40
commit bba1fc0d0b

13
dist/index.js generated vendored
View file

@ -1027,8 +1027,8 @@ function run() {
const git_commit_gpgsign = /true/i.test(core.getInput('git_commit_gpgsign')); const git_commit_gpgsign = /true/i.test(core.getInput('git_commit_gpgsign'));
const git_tag_gpgsign = /true/i.test(core.getInput('git_tag_gpgsign')); const git_tag_gpgsign = /true/i.test(core.getInput('git_tag_gpgsign'));
const git_push_gpgsign = /true/i.test(core.getInput('git_push_gpgsign')); const git_push_gpgsign = /true/i.test(core.getInput('git_push_gpgsign'));
const git_committer_name = core.getInput('git_committer_name') || process.env['GITHUB_ACTOR'] || 'github-actions'; const git_committer_name = core.getInput('git_committer_name');
const git_committer_email = core.getInput('git_committer_email') || `${git_committer_name}@users.noreply.github.com`; const git_committer_email = core.getInput('git_committer_email');
core.info('📣 GnuPG info'); core.info('📣 GnuPG info');
const version = yield gpg.getVersion(); const version = yield gpg.getVersion();
const dirs = yield gpg.getDirs(); const dirs = yield gpg.getDirs();
@ -1063,16 +1063,19 @@ function run() {
core.setOutput('fingerprint', privateKey.fingerprint); core.setOutput('fingerprint', privateKey.fingerprint);
core.setOutput('keyid', privateKey.keyID); core.setOutput('keyid', privateKey.keyID);
core.setOutput('email', privateKey.email); core.setOutput('email', privateKey.email);
core.setOutput('name', privateKey.name);
if (git_user_signingkey) { if (git_user_signingkey) {
core.info('🔐 Setting GPG signing keyID for this Git repository'); core.info('🔐 Setting GPG signing keyID for this Git repository');
yield git.setConfig('user.signingkey', privateKey.keyID); yield git.setConfig('user.signingkey', privateKey.keyID);
const user_email = git_committer_email || privateKey.email;
const user_name = git_committer_name || privateKey.name;
if (git_committer_email != privateKey.email) { if (git_committer_email != privateKey.email) {
core.setFailed('Committer email does not match GPG key user address'); core.setFailed('Committer email does not match GPG key user address');
return; return;
} }
core.info(`🔨 Configuring Git committer (${git_committer_name} <${git_committer_email}>)`); core.info(`🔨 Configuring Git committer (${user_name} <${user_email}>)`);
yield git.setConfig('user.name', git_committer_name); yield git.setConfig('user.name', user_name);
yield git.setConfig('user.email', git_committer_email); yield git.setConfig('user.email', user_email);
if (git_commit_gpgsign) { if (git_commit_gpgsign) {
core.info('💎 Sign all commits automatically'); core.info('💎 Sign all commits automatically');
yield git.setConfig('commit.gpgsign', 'true'); yield git.setConfig('commit.gpgsign', 'true');