File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
actions/create-github-release Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11name : Create GitHub Release
22description : ' Create the release on GitHub with a changelog'
33inputs :
4+ commercial :
5+ description : ' Whether to generate the changelog for the commercial release'
6+ required : true
47 milestone :
58 description : ' Name of the GitHub milestone for which a release will be created'
69 required : true
@@ -11,9 +14,6 @@ inputs:
1114 token :
1215 description : ' Token to use for authentication with GitHub'
1316 required : true
14- commercial :
15- description : ' Whether to generate the changelog for the commercial release'
16- required : true
1717runs :
1818 using : composite
1919 steps :
Original file line number Diff line number Diff line change 8989 - name : Create GitHub Release
9090 uses : ./.github/actions/create-github-release
9191 with :
92+ commercial : ${{ vars.COMMERCIAL }}
9293 milestone : ${{ needs.build-and-stage-release.outputs.version }}
9394 pre-release : true
9495 token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
Original file line number Diff line number Diff line change @@ -172,6 +172,6 @@ jobs:
172172 - name : Create GitHub Release
173173 uses : ./.github/actions/create-github-release
174174 with :
175+ commercial : ${{ vars.COMMERCIAL }}
175176 milestone : ${{ needs.build-and-stage-release.outputs.version }}
176177 token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
177- commercial : ${{ vars.COMMERCIAL }}
You can’t perform that action at this time.
0 commit comments