forked from lichie567/LMeter
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (28 loc) · 930 Bytes
/
build-debug.yml
File metadata and controls
36 lines (28 loc) · 930 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
35
36
name: Debug Build
on: [push, pull_request]
jobs:
build-debug:
runs-on: windows-latest
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
steps:
- name: Checkout and initialise
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Dalamud
shell: pwsh
run: |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/latest.zip -OutFile ./latest.zip
Expand-Archive -Path ./latest.zip ./dalamud
- name: Restore project dependencies
run: dotnet restore --verbosity normal
- name: Build Debug
run: dotnet build --no-restore --verbosity normal --configuration Debug
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: LMeter-debug-${{ github.sha }}
path: |
LMeter/bin/x64/Debug
!LMeter/bin/x64/Debug/LMeter