Closed Djaytan closed 9 months ago
Issues
0 New issues
Measures
0 Security Hotspots
No data about Coverage
No data about Duplication
:tada: This PR is included in version 3.0.3 :tada:
The release is available on:
v3.0.3
Your semantic-release bot :package::rocket:
:tada: This PR is included in version 3.0.3 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
The release v3.0.3 has been published successfully (https://github.com/Djaytan/mc-jobs-reborn-patch-place-break/releases/tag/v3.0.3)... But without the Spigot plugin nor the associated signature files! The PR for generating the changelog file failed to be created as well.
The observed errors:
=> This means that the plugin path is wrong.
=> This means that the
${{ steps.release.outputs.tag }}
context resolution inCHANGELOG_BRANCH_NAME: changelog/${{ steps.release.outputs.tag }}
is resolved as an empty string, leading to a branch name beingchangelog/
.The fix for the first issue consist on adjusting the path in two ways:
@semantic-release/github
plugin for thepath
option specifically according to the documentation: https://github.com/semantic-release/github?tab=readme-ov-file#assets=> The
path
property isn't mentioned.For the second issue, it seems clear that extracting the tag version name through environment variable isn't working. As a workaround, we just create a temporary file containing the value and then read it once the semantic-release CLI finishes its execution.