Skip to content

Commit

Permalink
Add requirements folder with dependencies list and build action
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickhat committed Mar 31, 2024
1 parent 17ceaf9 commit d5cebcb
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build_exe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build DLL Injector GUI EXE

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./QT/requirements.txt
- name: Build EXE with PyInstaller
run: |
pip install pyinstaller
pyinstaller --onefile --windowed ./QT/dll-injector-gui.py
- name: Upload EXE as Artifact
uses: actions/upload-artifact@v2
with:
name: dll-injector-gui-exe
path: ./dist/dll-injector-gui.exe
3 changes: 3 additions & 0 deletions QT/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PyQt5
psutil
pyinjector

0 comments on commit d5cebcb

Please sign in to comment.