File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
.github/actions/github/create-release Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ name : ' Create GitHub release'
2+ author : ' Pete Sramek'
3+ description : ' Create GitHub release.'
4+ inputs :
5+ branch-name :
6+ description : ' The name of the branch to extract version from.'
7+ required : true
8+
9+ runs :
10+ using : composite
11+ steps :
12+ - name : ' Checkout ${{ github.head_ref || github.ref }}'
13+ uses : actions/checkout@v5
14+ - name : ' Extract version from branch name'
15+ id : extract-version
16+ uses : ' ./.github/actions/versioning/extract-version'
17+ with :
18+ branch-name : ${{ inputs.branch-name }}
19+ - name : ' Create GitHub release PolylineAlgorithm ${{ steps.extract-version.outputs.package-version }}"'
20+ shell : bash
21+ env :
22+ GH_TOKEN : ${{ github.token }}
23+ run : |
24+ gh release create ${{ steps.extract-version.outputs.package-version }} --generate-notes --discussion-category "GeneralDiscussions"
You can’t perform that action at this time.
0 commit comments