-
Notifications
You must be signed in to change notification settings - Fork 57
41 lines (41 loc) · 1.28 KB
/
internal-test-build.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
name: Build desktop binaries
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build-package:
name: Build self-contained executables
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:6.0
steps:
- name: Check .NET version
run: dotnet --version
- name: Checkout source code
uses: actions/checkout@v3
- name: Execute Action build-with-plugins for Windows
uses: ./.github/actions/build-with-plugins
id: build-with-plugins-win
with:
platform: windows
platform-short: win
runtime: win-x64
build-version: 0.0.${{ github.run_number }}
- name: Execute Action build-with-plugins for MacOS
uses: ./.github/actions/build-with-plugins
id: build-with-plugins-mac
with:
platform: mac
platform-short: mac
runtime: osx-x64
build-version: 0.0.${{ github.run_number }}
- name: Execute Action build-with-plugins for Linux
uses: ./.github/actions/build-with-plugins
id: build-with-plugins-linux
with:
platform: linux
platform-short: linux
runtime: linux-x64
build-version: 0.0.${{ github.run_number }}