diff --git a/.github/workflows/testRelease.yml b/.github/workflows/testRelease.yml index f413ccd..cc5ae78 100644 --- a/.github/workflows/testRelease.yml +++ b/.github/workflows/testRelease.yml @@ -18,6 +18,7 @@ jobs: - name: Semantic Release uses: cycjimmy/semantic-release-action@master + id: semantic with: extra_plugins: | @semantic-release/git@7.0.18 diff --git a/src/setUpJob.task.js b/src/setUpJob.task.js index 9c7ccf4..2693d4c 100644 --- a/src/setUpJob.task.js +++ b/src/setUpJob.task.js @@ -1,3 +1,4 @@ +const path = require('path'); const core = require('@actions/core'); const outputs = require('./outputs.json'); @@ -9,5 +10,8 @@ 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(); };