doc(Chart): update Chart line type sample code (#2408) #1155
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package to Nuget | |
on: | |
push: | |
branches: | |
- pack | |
- hotfix | |
jobs: | |
pack: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Publish to Nuget | |
env: | |
NUGET_API_KEY: ${{secrets.NUGET_API_KEY}} | |
Bundle: True | |
run: | | |
dotnet build src/BootstrapBlazor | |
dotnet pack src/BootstrapBlazor -c Release -o publish | |
dotnet nuget push publish/BootstrapBlazor.*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY --skip-duplicate |