From 96f833da569721264a8efea5f9c0d19ea428913b Mon Sep 17 00:00:00 2001 From: Tyler Brinks Date: Mon, 23 Sep 2024 10:13:16 -0600 Subject: [PATCH] release package path --- .github/actions/dotnet/pack/action.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/actions/dotnet/pack/action.yml b/.github/actions/dotnet/pack/action.yml index 4fb3617..dd655cf 100644 --- a/.github/actions/dotnet/pack/action.yml +++ b/.github/actions/dotnet/pack/action.yml @@ -16,10 +16,6 @@ inputs: runs: using: "composite" steps: - - name: Pack pre-release version ${{steps.version.outputs.nuGetVersionV2}} - shell: bash - run: dotnet pack --configuration ${{ inputs.dotnet-build-configuration }} --verbosity normal --no-restore -p:PackageVersion=${{ inputs.pre-release-version }} --output ./packages/preview - - name: Pack release version ${{steps.version.outputs.majorMinorPatch}} shell: bash run: dotnet pack --configuration ${{ inputs.dotnet-build-configuration }} --verbosity normal --no-restore -p:PackageVersion=${{ inputs.release-version }} --output ./packages/release @@ -28,4 +24,4 @@ runs: uses: actions/upload-artifact@v4 with: name: packages - path: packages/release \ No newline at end of file + path: ./packages/release \ No newline at end of file