From ac3ba59f7f6c0ce6a843066732393dceb4268174 Mon Sep 17 00:00:00 2001 From: "Nathan Lemma (Waferwire LLC)" Date: Mon, 13 May 2024 11:46:05 -0700 Subject: [PATCH] - adding upload nuget packages step --- .github/workflows/simple-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/simple-build.yml b/.github/workflows/simple-build.yml index a6b63a2b07..ac7e546e7f 100644 --- a/.github/workflows/simple-build.yml +++ b/.github/workflows/simple-build.yml @@ -44,3 +44,8 @@ jobs: dotnet pack ${{github.workspace}}\Microsoft.Health.Fhir.sln --output ${{env.outputPath}}/nupkgs --no-build -c Release # dotnet pack ${{github.workspace}}\Microsoft.Health.Fhir.sln --output ${{env.outputPath}}/nupkgs --no-build --configuration=${{env.buildConfiguration}} -p:PackageVersion=${{needs.setup.outputs.majorMinorPatch}} + - name: Upload Nuget Packages + uses: actions/upload-artifact@v4 + with: + name: nuget + path: ${{env.outputPath}}/nupkgs