Skip to content

Commit 99a9dd5

Browse files
authored
dotnet pack generate symbols (snupkg) (#275)
* nuget alpha release test (with symbols) * dotnet pack generate symbols (snupkg)
1 parent 0695789 commit 99a9dd5

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build
2-
3-
on:
2+
3+
on:
44
push:
55
branches:
66
- master
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
jobs:
12-
12+
1313
buildAndUnitTest:
1414

1515
strategy:
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919

2020
runs-on: ${{ matrix.os }}
21-
21+
2222
env:
2323
SOLUTION_PATH: 'src/Blockcore.sln'
2424
BUILD_CONFIGURATION: 'Release'
@@ -27,7 +27,7 @@ jobs:
2727

2828
- uses: actions/checkout@v1
2929
name: Checkout
30-
30+
3131
- name: Setup Node.js (12.x)
3232
uses: actions/setup-node@v1
3333
with:
@@ -44,7 +44,7 @@ jobs:
4444
dotnet test -v=normal --filter "FullyQualifiedName!~IntegrationTests&Unstable!=True" -c ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}
4545
4646
- name: Nuget Pack
47-
run: dotnet pack --configuration ${{env.BUILD_CONFIGURATION}} --output "${{github.workspace}}/package/" ${{env.SOLUTION_PATH}}
47+
run: dotnet pack --configuration ${{env.BUILD_CONFIGURATION}} --output "${{github.workspace}}/package/" ${{env.SOLUTION_PATH}} -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
4848

4949
- name: Release
5050
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)