Merge pull request #192 from josu-vergara-lecue/fix/issue-190

Issue 190: Use GITHUB_OUTPUT environment file to set output.
This commit is contained in:
Phil 2022-10-27 11:02:23 +02:00 committed by GitHub
commit dd2a2e1a8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -202,7 +202,8 @@ const pkg = getPackageJson();
console.log('newVersion 2:', newVersion); console.log('newVersion 2:', newVersion);
newVersion = `${tagPrefix}${newVersion}`; newVersion = `${tagPrefix}${newVersion}`;
console.log(`newVersion after merging tagPrefix+newVersion: ${newVersion}`); console.log(`newVersion after merging tagPrefix+newVersion: ${newVersion}`);
console.log(`::set-output name=newTag::${newVersion}`); // Using sh as command instead of directly echo to be able to use file redirection
await runInWorkspace('sh', ['-c', `echo "newTag=${newVersion}" >> $GITHUB_OUTPUT`]);
try { try {
// to support "actions/checkout@v1" // to support "actions/checkout@v1"
if (process.env['INPUT_SKIP-COMMIT'] !== 'true') { if (process.env['INPUT_SKIP-COMMIT'] !== 'true') {
@ -210,7 +211,7 @@ const pkg = getPackageJson();
} }
} catch (e) { } catch (e) {
console.warn( console.warn(
'git commit failed because you are using "actions/checkout@v2"; ' + 'git commit failed because you are using "actions/checkout@v2" or later; ' +
'but that doesnt matter because you dont need that git commit, thats only for "actions/checkout@v1"', 'but that doesnt matter because you dont need that git commit, thats only for "actions/checkout@v1"',
); );
} }