We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e6a22f commit 2b7b990Copy full SHA for 2b7b990
1 file changed
.github/workflows/ci-cd.yml
@@ -82,10 +82,10 @@ jobs:
82
run: dotnet restore ${{ env.PROJECT_PATH }}
83
84
- name: Build
85
- run: dotnet build ${{ env.PROJECT_PATH }} --no-restore --configuration Release -p:Version=${{ steps.gitversion.outputs.semVer }}
+ run: dotnet build ${{ env.PROJECT_PATH }} --no-restore --configuration Release -p:Version=${{ steps.gitversion.outputs.MajorMinorPatch }}
86
87
- name: Pack
88
- run: dotnet pack ${{ env.PROJECT_PATH }} --no-build --configuration Release -p:PackageVersion=${{ steps.gitversion.outputs.semVer }} --output ./nupkg
+ run: dotnet pack ${{ env.PROJECT_PATH }} --no-build --configuration Release -p:PackageVersion=${{ steps.gitversion.outputs.MajorMinorPatch }} --output ./nupkg
89
90
- name: Publish to NuGet
91
env:
0 commit comments