2 Commits

Author SHA1 Message Date
a5aee42853 chore(release): 1.2.0 [skip ci]
# [1.2.0](https://github.com/yanhao98/semantic-release-action/compare/v1.1.1...v1.2.0) (2024-10-09)

### Features

* log semantic release result in a grouped output ([1ae25ac](1ae25ac339))
2024-10-09 12:05:27 +08:00
1ae25ac339 feat: log semantic release result in a grouped output 2024-10-09 12:04:57 +08:00
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,10 @@
# [1.2.0](https://github.com/yanhao98/semantic-release-action/compare/v1.1.1...v1.2.0) (2024-10-09)
### Features
* log semantic release result in a grouped output ([1ae25ac](https://github.com/yanhao98/semantic-release-action/commit/1ae25ac339f009d3fc5d4da0aa5ece8d15552826))
## [1.1.1](https://github.com/yanhao98/semantic-release-action/compare/v1.1.0...v1.1.1) (2024-10-06) ## [1.1.1](https://github.com/yanhao98/semantic-release-action/compare/v1.1.0...v1.1.1) (2024-10-06)

View File

@ -39,6 +39,9 @@ async function runRelease() {
} else { } else {
core.setOutput('next_release_published', 'false'); core.setOutput('next_release_published', 'false');
} }
await core.group('Semantic Release Result', async () => {
core.info(`result :>> ${JSON.stringify(result, null, 2)}`);
});
} }
if (process.env.CI) await installDependencies(); if (process.env.CI) await installDependencies();