-
-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (28 loc) · 891 Bytes
/
Copy pathbuild.yml
File metadata and controls
34 lines (28 loc) · 891 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
32
33
34
name: Build Funkin.NET
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Master
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Build Release & Debug
shell: bash
run: |
dotnet restore ./Funkin/Funkin.sln
dotnet build ./Funkin/Funkin.sln --configuration DEBUG
dotnet build ./Funkin/Funkin.sln --configuration RELEASE
- name: Upload Debug Build Artifact
uses: actions/upload-artifact@v2
with:
name: Debug Build
path: |
./Funkin/Funkin.Desktop/bin/Debug/
- name: Upload Release Build Artifact
uses: actions/upload-artifact@v2
with:
name: Release Build
path: |
./Funkin/Funkin.Desktop/bin/Release/