We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae99274 commit 77024d3Copy full SHA for 77024d3
1 file changed
.github/workflows/release.yml
@@ -66,11 +66,18 @@ jobs:
66
run: >-
67
dotnet restore "${{ github.workspace }}/${{ inputs.solution }}"
68
69
+ - name: '.NET Build'
70
+ run: >-
71
+ dotnet build
72
+ "${{ github.workspace }}/${{ inputs.solution }}"
73
+ --no-restore
74
+ --configuration "${{ env.BUILD_CONFIG }}"
75
+
76
- name: '.NET Pack'
77
78
dotnet pack
79
"${{ github.workspace }}/${{ inputs.solution }}"
- --no-restore
80
+ --no-build
81
--configuration "${{ env.BUILD_CONFIG }}"
82
-p:ContinuousIntegrationBuild=true
83
-o "${{ github.workspace }}/${{ env.PACKAGE_PATH }}"
0 commit comments