Merge branch '3.5.x'

Closes gh-46507
This commit is contained in:
Stéphane Nicoll 2025-07-22 16:36:28 +02:00
commit e798924d2c
3 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,9 @@
name: Create GitHub Release
description: 'Create the release on GitHub with a changelog'
inputs:
commercial:
description: 'Whether to generate the changelog for the commercial release'
required: true
milestone:
description: 'Name of the GitHub milestone for which a release will be created'
required: true
@ -11,9 +14,6 @@ inputs:
token:
description: 'Token to use for authentication with GitHub'
required: true
commercial:
description: 'Whether to generate the changelog for the commercial release'
required: true
runs:
using: composite
steps:

View File

@ -124,6 +124,7 @@ jobs:
- name: Create GitHub Release
uses: ./.github/actions/create-github-release
with:
commercial: ${{ vars.COMMERCIAL }}
milestone: ${{ needs.build-and-stage-release.outputs.version }}
pre-release: true
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

View File

@ -172,6 +172,6 @@ jobs:
- name: Create GitHub Release
uses: ./.github/actions/create-github-release
with:
commercial: ${{ vars.COMMERCIAL }}
milestone: ${{ needs.build-and-stage-release.outputs.version }}
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
commercial: ${{ vars.COMMERCIAL }}