-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (39 loc) · 1.11 KB
/
build.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: Autobuild
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: llvm/actions/install-ninja@main
- uses: actions/checkout@v2
with:
fetch-depth: 1
submodules: true
- name: Build
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -GNinja
cmake --build . --config Release
- name: Create artifacts
run: |
mkdir MAXWELL
move build\MAXWELL.dll MAXWELL\MAXWELL.dll
move build\MAXWELL.exe MAXWELL\MAXWELL.exe
move README.md MAXWELL\README.txt
7z a MAXWELL.zip MAXWELL\
- name: Create release
uses: marvinpinto/[email protected]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "autobuild"
prerelease: false
title: "Autobuild"
files: |
MAXWELL.zip