-
-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (28 loc) · 712 Bytes
/
main.yml
File metadata and controls
31 lines (28 loc) · 712 Bytes
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
name: Volte CI
on:
push:
branches:
- v4
pull_request:
branches:
- v4
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.100-preview.7.20366.6'
- name: Compile
run: bash build.sh
- name: Upload Linux binary
uses: actions/upload-artifact@main
with:
name: Volte-Linux
path: src/bin/Release/net5.0/linux-x64/publish/Volte
- name: Upload Windows binary
uses: actions/upload-artifact@main
with:
name: Volte-Windows
path: src/bin/Release/net5.0/win10-x64/publish/Volte.exe