-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 824 Bytes
/
ci.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
name: CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *' # Monthly
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Build
run: |
MSBuild.exe launcher/launcher.vcxproj /p:Configuration=Release
MSBuild.exe launcher/launcher.vcxproj /p:Configuration=Debug
- name: Move builded EXE into specific directory
run: |
mkdir compiled
mv launcher/Release/hl.exe ./compiled
mv launcher/Debug/hl.exe ./compiled/hl_debug.exe
- name: Deploy
uses: actions/[email protected]
with:
name: hl_launcher
path: compiled