We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dc3d53 commit 019f573Copy full SHA for 019f573
.github/workflows/ci.yml
@@ -260,6 +260,16 @@ jobs:
260
sh -c "! grep 'has the following vulnerable packages' vulnerable.txt"
261
working-directory: ./src
262
263
+ - name: Package (Official Release)
264
+ env:
265
+ PACKAGEDIR: '${{ github.workspace }}/release/'
266
+ if: ${{ github.event.inputs.nuget && matrix.os == 'ubuntu-latest' }}
267
+ run: |
268
+ mkdir $PACKAGEDIR
269
+ dotnet pack --no-build -c ${{ env.BUILD_CONFIG }} -o $PACKAGEDIR -p:PackageVersion=${{ steps.gitversion.outputs.majorMinorPatch }}
270
+ ls -lR $PACKAGEDIR
271
+ working-directory: ./src
272
+
273
- name: Package
274
env:
275
PACKAGEDIR: '${{ github.workspace }}/release/'
0 commit comments