(build) Improve input parameters for workflows, changed to dynamic matrix #4278
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes aimed at standardizing the naming conventions for input parameters and improving the configuration of GitHub Actions workflows. The most important changes include renaming input parameters for consistency and updating workflow files to use these new names.
Standardization of Input Parameters:
.github/actions/docker-manifests/action.yml
: Renameddistro
todockerDistro
andtargetFramework
todotnetVersion
. Updated the correspondingruns
commands to reflect these changes. [1] [2] [3].github/actions/docker-publish/action.yml
: Renameddistro
todockerDistro
andtargetFramework
todotnetVersion
. Updated the correspondingruns
commands to reflect these changes. [1] [2] [3].github/actions/docker-test/action.yml
: Renameddistro
todockerDistro
andtargetFramework
todotnetVersion
. Updated the correspondingruns
commands to reflect these changes. [1] [2]Workflow File Updates:
.github/workflows/_artifacts_linux.yml
: AddeddockerDistros
anddotnetVersions
inputs. Updated matrix strategy to use these new inputs. [1] [2].github/workflows/_docker.yml
: AddeddockerDistros
anddotnetVersions
inputs. Updated matrix strategy to use these new inputs. [1] [2].github/workflows/_docker_manifests.yml
: AddeddockerDistros
anddotnetVersions
inputs. Updated matrix strategy to use these new inputs. [1] [2].github/workflows/_prepare.yml
: Added outputs fordockerDistros
anddotnetVersions
. Introduced a newset_matrix
job to set these outputs. [1] [2].github/workflows/_unit_tests.yml
: AddeddotnetVersions
input. Updated matrix strategy to use this new input. [1] [2]CI Workflow Enhancements:
.github/workflows/ci.yml
: Updated jobs to usedockerDistros
anddotnetVersions
outputs from theprepare
job. [1] [2] [3] [4]Miscellaneous Updates:
.github/workflows/docs.yml
: Changedruns-on
fromwindows-latest
toubuntu-latest
for consistency. Simplified therun
command for building schemas. [1] [2] [3].run.xml
files: UpdatedPROGRAM_PARAMETERS
to usedotnet_version
instead ofdocker_dotnetversion
. [1] [2] [3]