-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (39 loc) · 1.01 KB
/
dotnet-core.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
name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download Everest stripped lib
uses: robinraju/[email protected]
with:
repository: EverestAPI/Everest
latest: true
fileName: lib-stripped.zip
- name: Extract lib-stripped.zip
run: unzip lib-stripped.zip
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build Code/NerdHelper.csproj --configuration Release --no-restore
env:
CelestePrefix: ${{ github.workspace }}/lib-stripped
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: NerdHelper
path: |
everest.yaml
bin/NerdHelper.dll
bin/NerdHelper.pdb
Ahorn/**/*
Graphics/**/*
Loenn/**/*
Dialog/**/*