-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 891 Bytes
/
debug.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
name: Debug
on:
push:
branches:
- dev
jobs:
debug-build:
name: Debug build
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-latest
target: win
- os: ubuntu-latest
target: linux
- os: macos-latest
target: osx
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Build
run: dotnet build src/TYM.csproj
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: debug-${{ matrix.target }}
path: src/bin/