-
Notifications
You must be signed in to change notification settings - Fork 12
63 lines (52 loc) · 1.56 KB
/
commit.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: commit
on:
push:
paths: ['*', 'installer/**', '.github/**']
jobs:
windows:
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: ./.github/run-tests
- name: Upload Installer
uses: actions/upload-artifact@v4
with:
name: DXRando
path: installer/dist/DXRandoInstaller.exe
- name: Upload installer warnings
uses: actions/upload-artifact@v4
with:
name: installerwarnings.txt
path: installer/build/installer/warn-installer.txt
- name: Upload Bingo Viewer
uses: actions/upload-artifact@v4
with:
name: BingoViewer
path: installer/dist/BingoViewer.exe
linux:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: sudo apt-get update -y
- run: sudo apt-get install -y python3-tk idle3 binutils
- uses: ./.github/run-tests
- name: Upload Installer
uses: actions/upload-artifact@v4
with:
name: DXRando-linux
path: installer/dist/DXRandoInstaller
- name: Upload installer warnings
uses: actions/upload-artifact@v4
with:
name: installerwarningslinux.txt
path: installer/build/installer/warn-installer.txt
- name: Upload Bingo Viewer
uses: actions/upload-artifact@v4
with:
name: BingoViewer-linux
path: installer/dist/BingoViewer