misc: bump release notes. #16
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: Pack Nuget | |
on: | |
push: | |
branches: [ "action/pack" ] | |
pull_request: | |
branches: [ "action/pack" ] | |
jobs: | |
nuget: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Nuget Semi.Avalonia | |
run: dotnet pack ./src/Semi.Avalonia -o ./nugets | |
- name: Nuget Semi.Avalonia.ColorPicker | |
run: dotnet pack ./src/Semi.Avalonia.ColorPicker -o ./nugets | |
- name: Nuget Semi.Avalonia.DataGrid | |
run: dotnet pack ./src/Semi.Avalonia.DataGrid -o ./nugets | |
- name: Nuget Semi.Avalonia.TreeDataGrid | |
run: dotnet pack ./src/Semi.Avalonia.TreeDataGrid -o ./nugets | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: nugets | |
path: ./nugets |