File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
.github/actions/ci/generate-release Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 11name : Generate Release
22description : Generate a release based on the build outputs
33
4+ outputs :
5+ new_version :
6+ description : ' The new version generated for the release'
7+ value : ${{ steps.calculate_next_version.outputs.new_version }}
8+ release_type :
9+ description : ' The type of release (major, minor, patch, etc.)'
10+ value : ${{ steps.determine_release_type.outputs.release_type }}
11+ previous_tag :
12+ description : ' The last tag before this release'
13+ value : ${{ steps.get_tag.outputs.tag }}
14+ should_release :
15+ description : ' Whether a release should be created'
16+ value : ${{ steps.determine_release_type.outputs.should_release }}
17+ should_publish :
18+ description : ' Whether the release should be published on GitHub'
19+ value : ${{ steps.determine_release_type.outputs.should_publish }}
20+ branch_name :
21+ description : ' The name of the branch being built'
22+ value : ${{ steps.branch_info.outputs.branch_name }}
23+
424runs :
525 using : composite
626 steps :
You can’t perform that action at this time.
0 commit comments