Skip to content

Commit

Permalink
feat: add mudblazor package to ci
Browse files Browse the repository at this point in the history
Refs: BLOCKLY-T-2
  • Loading branch information
thelegendaryzubat committed Jan 19, 2022
1 parent 88282c6 commit 311c1a0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
PROJECT: Sitko.Blockly
BLAZOR_PROJECT: Sitko.Blockly.Blazor
ANTDESIGN_PROJECT: Sitko.Blockly.AntDesign
MUDBLAZOR_PROJECT: Sitko.Blockly.AntDesign
EF_PROJECT: Sitko.Blockly.EntityFrameworkCore
TESTS_PROJECT_MAIN: Sitko.Blockly.Tests
TESTS_PROJECT_PARSER: Sitko.Blockly.HtmlParser.Tests
Expand All @@ -39,6 +40,8 @@ jobs:
run: dotnet pack -c Release src/${{ env.BLAZOR_PROJECT }}
- name: Create antdesign package
run: dotnet pack -c Release src/${{ env.ANTDESIGN_PROJECT }}
- name: Create mudblazor package
run: dotnet pack -c Release src/${{ env.MUDBLAZOR_PROJECT }}
- name: Create ef package
run: dotnet pack -c Release src/${{ env.EF_PROJECT }}
- name: Add Github Actions logger
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ jobs:
project_path: src/Sitko.Blockly.AntDesign/Sitko.Blockly.AntDesign.csproj
nuget_host: https://api.nuget.org/v3/index.json
nuget_token: ${{ secrets.NUGET_API_KEY }}
- name: Publish MudBlazor library
uses: sitkoru/nuget-release-action@v1
with:
version: ${{ steps.prep.outputs.version }}
project_path: src/Sitko.Blockly.MudBlazor/Sitko.Blockly.MudBlazor.csproj
nuget_host: https://api.nuget.org/v3/index.json
nuget_token: ${{ secrets.NUGET_API_KEY }}
- name: Publish EF library
uses: sitkoru/nuget-release-action@v1
with:
Expand Down

0 comments on commit 311c1a0

Please sign in to comment.