Skip to content

Commit

Permalink
dotnet pack generate symbols (snupkg) (#275)
Browse files Browse the repository at this point in the history
* nuget alpha release test (with symbols)

* dotnet pack generate symbols (snupkg)
  • Loading branch information
MithrilMan authored Feb 10, 2021
1 parent 0695789 commit 99a9dd5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build
on:

on:
push:
branches:
- master
Expand All @@ -9,7 +9,7 @@ on:
workflow_dispatch:

jobs:

buildAndUnitTest:

strategy:
Expand All @@ -18,7 +18,7 @@ jobs:
fail-fast: false

runs-on: ${{ matrix.os }}

env:
SOLUTION_PATH: 'src/Blockcore.sln'
BUILD_CONFIGURATION: 'Release'
Expand All @@ -27,7 +27,7 @@ jobs:

- uses: actions/checkout@v1
name: Checkout

- name: Setup Node.js (12.x)
uses: actions/setup-node@v1
with:
Expand All @@ -44,7 +44,7 @@ jobs:
dotnet test -v=normal --filter "FullyQualifiedName!~IntegrationTests&Unstable!=True" -c ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}
- name: Nuget Pack
run: dotnet pack --configuration ${{env.BUILD_CONFIGURATION}} --output "${{github.workspace}}/package/" ${{env.SOLUTION_PATH}}
run: dotnet pack --configuration ${{env.BUILD_CONFIGURATION}} --output "${{github.workspace}}/package/" ${{env.SOLUTION_PATH}} -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg

- name: Release
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit 99a9dd5

Please sign in to comment.