-
Notifications
You must be signed in to change notification settings - Fork 26
39 lines (34 loc) · 1.13 KB
/
windows.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: Windows
on: [push, pull_request]
jobs:
Windows:
runs-on: windows-latest
env:
targetName: ScopeGUI
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: CMake Build
shell: powershell
run: |
$env:path=$env:path.Replace("C:\Program Files\Git", "HIDE_GIT")
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release .. -G "MinGW Makefiles"
mingw32-make ScopeGUI -j2
Compress-Archive -Path ${{ env.targetName }}.exe ${{ env.targetName }}.zip
- name: Archive production artifacts
uses: actions/upload-artifact@v1
with:
name: ${{ env.targetName }}_${{ runner.os }}_${{ github.sha }}
path: build
- name: Make Release
if: startsWith(github.event.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/${{ env.targetName }}.zip
asset_name: ${{ env.targetName }}_${{ runner.os }}.zip
tag: ${{ github.ref }}
overwrite: true