Skip to content

Commit

Permalink
Fixed release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Nesterov committed May 7, 2020
1 parent 6a01718 commit dadf2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ jobs:
if: env.RELEASE_CLIENT == 'true'
run: dotnet pack $CLIENT_PROJECT --configuration Release --output ../../packages --no-build --include-symbols --include-source /p:SymbolPackageFormat=snupkg /p:Version=$VERSION
- name: Pack push client NuGet package
if: env.PUSH_CLIENT_PROJECT == 'true'
if: env.RELEASE_PUSH_CLIENT == 'true'
run: dotnet pack $PUSH_CLIENT_PROJECT --configuration Release --output ../../packages --no-build --include-symbols --include-source /p:SymbolPackageFormat=snupkg /p:Version=$VERSION
- name: Pack sms client NuGet package
if: env.SMS_CLIENT_PROJECT == 'true'
if: env.RELEASE_SMS_CLIENT == 'true'
run: dotnet pack $SMS_CLIENT_PROJECT --configuration Release --output ../../packages --no-build --include-symbols --include-source /p:SymbolPackageFormat=snupkg /p:Version=$VERSION
- name: Pack contract NuGet package
if: env.RELEASE_CONTRACT == 'true'
Expand Down

0 comments on commit dadf2c1

Please sign in to comment.