-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (51 loc) · 1.89 KB
/
main.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: .NET Core
on:
push:
tags:
- '*'
jobs:
publishlinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.202
- name: Publish with dotnet
run: dotnet publish ./CollimationCircles/CollimationCircles.csproj -c Release -f net7.0 -r linux-x64 --self-contained true /p:PublishSingleFile=true /p:PublishReadyToRun=true /p:PublishLinux=True
- name: Archive publish artifacts
uses: actions/upload-artifact@v1
with:
name: CollimationCircles_linux-x64
path: CollimationCircles/bin/Release/net7.0/linux-x64/publish
publishwin:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.202
- name: Publish with dotnet
run: dotnet publish ./CollimationCircles/CollimationCircles.csproj -c Release -f net7.0 -r win-x64 --self-contained true /p:PublishSingleFile=true /p:PublishReadyToRun=true /p:PublishWin=True
- name: Archive publish artifacts
uses: actions/upload-artifact@v1
with:
name: CollimationCircles_win-x64
path: CollimationCircles/bin/Release/net7.0/win-x64/publish
publishmac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.202
- name: Publish with dotnet
run: dotnet publish ./CollimationCircles/CollimationCircles.csproj -c Release -f net7.0 -r osx-x64 --self-contained true /p:PublishSingleFile=true /p:PublishReadyToRun=true /p:PublishOsx=True
- name: Archive publish artifacts
uses: actions/upload-artifact@v1
with:
name: CollimationCircles_osx-x64
path: CollimationCircles/bin/Release/net7.0/osx-x64/publish