BootstrapBlazor3/.github/workflows/pack.yml

31 lines
905 B
YAML
Raw Normal View History

2020-10-07 14:01:18 +08:00
name: Package to Nuget
on:
push:
branches:
- master
- dev
jobs:
2020-10-07 14:01:18 +08:00
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.403
- name: Publish to Nuget
env:
NUGET_API_KEY: ${{secrets.NUGET_API_KEY}}
run: |
dotnet build src/BootstrapBlazor -c Release
dotnet pack src/BootstrapBlazor -c Release -o publish --no-build --no-restore
dotnet nuget push publish/*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY --skip-duplicate
dotnet build src/BootstrapBlazor.Chart -c Release
dotnet pack src/BootstrapBlazor.Chart -c Release -o publish --no-build --no-restore
dotnet nuget push publish/*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY --skip-duplicate