Skip to content

Commit

Permalink
release package path
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerBrinks committed Sep 23, 2024
1 parent 2e327e7 commit 96f833d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/actions/dotnet/pack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -28,4 +24,4 @@ runs:
uses: actions/upload-artifact@v4
with:
name: packages
path: packages/release
path: ./packages/release

0 comments on commit 96f833d

Please sign in to comment.