mirror of
https://github.com/cycjimmy/semantic-release-action.git
synced 2025-11-07 10:46:56 +00:00
Compare commits
3 commits
ebcbc66374
...
ba330626c4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ba330626c4 | ||
|
|
b67d9790a5 | ||
|
|
451bf1fa96 |
4 changed files with 11 additions and 4 deletions
|
|
@ -1,3 +1,10 @@
|
||||||
|
## [5.0.2](https://github.com/cycjimmy/semantic-release-action/compare/v5.0.1...v5.0.2) (2025-10-10)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* further fix of result handling in windUpJob.task.js ([451bf1f](https://github.com/cycjimmy/semantic-release-action/commit/451bf1fa96343272b4efadb5731fe2e25073d24f)), closes [#264](https://github.com/cycjimmy/semantic-release-action/issues/264)
|
||||||
|
|
||||||
## [5.0.1](https://github.com/cycjimmy/semantic-release-action/compare/v5.0.0...v5.0.1) (2025-10-09)
|
## [5.0.1](https://github.com/cycjimmy/semantic-release-action/compare/v5.0.0...v5.0.1) (2025-10-09)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@cycjimmy/semantic-release-action",
|
"name": "@cycjimmy/semantic-release-action",
|
||||||
"version": "5.0.1",
|
"version": "5.0.2",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@cycjimmy/semantic-release-action",
|
"name": "@cycjimmy/semantic-release-action",
|
||||||
"version": "5.0.1",
|
"version": "5.0.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.1",
|
"@actions/core": "^1.10.1",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@cycjimmy/semantic-release-action",
|
"name": "@cycjimmy/semantic-release-action",
|
||||||
"version": "5.0.1",
|
"version": "5.0.2",
|
||||||
"description": "GitHub Action for Semantic Release",
|
"description": "GitHub Action for Semantic Release",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ module.exports = async (result) => {
|
||||||
core.setOutput(outputs.last_release_git_tag, lastRelease.gitTag);
|
core.setOutput(outputs.last_release_git_tag, lastRelease.gitTag);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!nextRelease) {
|
if (!nextRelease?.version) {
|
||||||
core.debug('No release published.');
|
core.debug('No release published.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue