mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 10:46:56 +00:00
17 lines
423 B
JavaScript
17 lines
423 B
JavaScript
const path = require('path');
|
|
const core = require('@actions/core');
|
|
const outputs = require('./outputs.json');
|
|
|
|
/**
|
|
* setUpJob
|
|
* @returns {Promise<void>}
|
|
*/
|
|
module.exports = async () => {
|
|
// set outputs default
|
|
core.setOutput(outputs.new_release_published, 'false');
|
|
|
|
core.debug('action_workspace: ' + path.resolve(__dirname, '..'));
|
|
core.debug('process.cwd: ' + process.cwd());
|
|
|
|
return Promise.resolve();
|
|
};
|