-
-
Notifications
You must be signed in to change notification settings - Fork 76
35 lines (24 loc) · 971 Bytes
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build, Test and Publish release
on:
push:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.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