forked from WouterJD/FortiusANT
-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (35 loc) · 838 Bytes
/
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
name: Build FortiusANT
on: [push]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Build Windows Executables
shell: cmd
run: |
ci/windows/build.bat
- uses: actions/upload-artifact@v2
with:
name: Windows artifacts
path: |
pythoncode\dist\FortiusANT.exe
pythoncode\dist\ExplorANT.exe
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Build macOS Executable
run: |
ci/macos/build
- uses: actions/upload-artifact@v2
with:
name: macOS artifacts
path: |
pythoncode/dist