Add static property ClipboardContentBinding (#385) #205
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: Build, Test and Publish release | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
6.x.x | |
7.x.x | |
- name: install workloads | |
run: dotnet workload restore src/Avalonia.FuncUI.sln | |
- name: Build & Test | |
run: dotnet test src/Avalonia.FuncUI.sln --verbosity normal | |
- name: Build for release | |
run: dotnet build src/Avalonia.FuncUI/Avalonia.FuncUI.fsproj -c Release | |
- name: Build for release | |
run: dotnet build src/Avalonia.FuncUI.Elmish/Avalonia.FuncUI.Elmish.fsproj -c Release | |
- name: Publish base project and Elmish NuGets (if this version was not published before) | |
run: dotnet nuget push src/**/bin/Release/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} --skip-duplicate |