File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,17 @@ jobs:
4848 - name : Get next application version
4949 id : get_next_application_version
5050 shell : pwsh
51+ env :
52+ GIT_TAG_NAME : ${{ inputs.git_tag_name }}
53+ MAJOR_VERSION : ${{ inputs.major_version }}
54+ MINOR_VERSION : ${{ inputs.minor_version }}
55+ PATCH_VERSION_STARTS_FROM : ${{ inputs.patch_version_starts_from }}
5156 run : >-
5257 ./.github/scripts/Get-NextApplicationVersion.ps1
53- -GitTagName "${{ inputs.git_tag_name }} "
54- -MajorVersion "${{ inputs.major_version }} "
55- -MinorVersion "${{ inputs.minor_version }} "
56- -PatchVersionStartsFrom "${{ inputs.patch_version_starts_from }} "
58+ -GitTagName "$env:GIT_TAG_NAME "
59+ -MajorVersion "$env:MAJOR_VERSION "
60+ -MinorVersion "$env:MINOR_VERSION "
61+ -PatchVersionStartsFrom "$env:PATCH_VERSION_STARTS_FROM "
5762
5863 docker-build-push :
5964 needs : get-next-application-version
You can’t perform that action at this time.
0 commit comments