Skip to content

Commit

Permalink
Prevent parallel builds in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
danheron authored Feb 15, 2024
1 parent 45d9f0c commit a5c0fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-mudcalendar-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
7.0.x
- name: Pack nuget package
run: dotnet pack -c Release --output nupkgs /p:PackageVersion=${{ needs.get-version.outputs.VERSION }} /p:AssemblyVersion=${{ needs.get-version.outputs.VERSION }} /p:Version=${{ needs.get-version.outputs.VERSION }}
run: dotnet pack -c Release -m:1 --output nupkgs /p:PackageVersion=${{ needs.get-version.outputs.VERSION }} /p:AssemblyVersion=${{ needs.get-version.outputs.VERSION }} /p:Version=${{ needs.get-version.outputs.VERSION }}
working-directory: './Heron.MudCalendar'

- name: Publish nuget package
Expand Down

0 comments on commit a5c0fd4

Please sign in to comment.