We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66d8d1e commit 0798b82Copy full SHA for 0798b82
1 file changed
.github/workflows/ci.yml
@@ -155,19 +155,12 @@ jobs:
155
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props') }}
156
restore-keys: |
157
${{ runner.os }}-nuget-
158
-
159
- - name: Restore dependencies
160
- run: dotnet restore
161
162
- - name: Build
163
- run: dotnet build --no-restore --configuration Release -warnaserror
164
+
165
- name: Pack libraries
166
run: |
167
- dotnet pack --no-build --configuration Release \
+ dotnet pack --configuration Release \
168
--output outputs/packages \
169
- --include-symbols \
170
- -p:SymbolPackageFormat=snupkg \
+ -p:ContinuousIntegrationBuild=true \
171
-p:Version=${{ steps.gitversion.outputs.semver }}
172
173
- name: Upload packages as artifacts
0 commit comments