-
Notifications
You must be signed in to change notification settings - Fork 26
62 lines (51 loc) · 1.4 KB
/
compile_exe.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
name: Build
on:
push:
branches:
- '*'
pull_request:
jobs:
changes:
name: Check for Changes
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Check If Changes
uses: dorny/paths-filter@v2
id: changes
with:
filters: |
build-exe:
- './UK/LogonDetails.py'
- name: Check if change is detected
run: echo 'ran';
build-exe:
name: Build EXE
runs-on: windows-latest
needs: changes
if: ${{ needs.changes.outputs.backend == 'true' }}
concurrency:
group: uk-controller-pack-build-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
run: pip install pyinstaller
- name: Run Python Script
run: pyinstaller --distpath ./UK/ --onefile -n LogonDetails.exe ./UK/LogonDetails.py
- name: Debug
run: ls ./UK/
- name: Commit exe File
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add ./UK/LogonDetails.exe
git commit -m "Update LogonDetails.exe"