Skip to content

Commit 5c1a84b

Browse files
committed
Further output param adjustment
1 parent 1f4ccc5 commit 5c1a84b

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/fhir-oss-ci-pipeline.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ jobs:
2323
deploymentEnvironmentName: $vars.CIRESOURCEGROUPROOT
2424
appServicePlanName: $vars.CIRESOURCEGROUPROOT-linux
2525
resourceGroupName: $vars.CIRESOURCEGROUPROOT
26+
outputs:
27+
assemblyVersion: ${{ steps.version.outputs.assemblyVersion }}
28+
fileVersion: ${{ steps.version.outputs.fileVersion }}
29+
informationalVersion: ${{ steps.version.outputs.informationalVersion }}
30+
majorMinorPatch: ${{ steps.version.outputs.majorMinorPatch }}
2631
steps:
2732
- name: Checkout
2833
uses: actions/checkout@v4
@@ -68,9 +73,9 @@ jobs:
6873
- name: Build
6974
uses: ./.github/actions/dotnet-build
7075
with:
71-
assemblyVersion: ${{needs.setup.version.outputs.assemblyVersion}}
76+
assemblyVersion: ${{needs.setup.outputs.assemblyVersion}}
7277
buildConfiguration: ${{env.buildConfiguration}}
73-
fileVersion: ${{needs.setup.version.outputs.fileVersion}}
74-
informationalVersion: ${{needs.setup.version.outputs.informationalVersion}}
78+
fileVersion: ${{needs.setup.outputs.fileVersion}}
79+
informationalVersion: ${{needs.setup.outputs.informationalVersion}}
7580
dotnetVersion: ${{matrix.dotnet-version}}
76-
majorMinorPatch: ${{needs.setup.version.outputs.majorMinorPatch}}
81+
majorMinorPatch: ${{needs.setup.outputs.majorMinorPatch}}

0 commit comments

Comments
 (0)