File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,33 +10,31 @@ jobs:
1010 runs-on : windows-latest
1111
1212 steps :
13- - name : Checkout código
13+ - name : 🔄 Checkout do código
1414 uses : actions/checkout@v4
1515
16- - name : Instalar Python
16+ - name : 🐍 Instalar Python
1717 uses : actions/setup-python@v5
1818 with :
1919 python-version : ' 3.12'
2020
21- - name : Instalar dependências
21+ - name : 📦 Instalar dependências
2222 run : |
2323 python -m pip install --upgrade pip
24- pip install pyinstaller
25- pip install customtkinter matplotlib numpy scipy control pillow
24+ pip install pyinstaller customtkinter pillow matplotlib numpy scipy control sympy fpdf2
2625
27- - name : Compilar para EXE
26+ - name : ⚙️ Compilar o sistema
2827 run : |
2928 pyinstaller ^
3029 --noconfirm ^
3130 --onefile ^
3231 --windowed ^
3332 --icon=logo.png ^
34- --add-data "image;image" ^
35- --add-data "icons;icons" ^
3633 --add-data "logo.png;." ^
34+ --add-data "image;image" ^
3735 tela.py
3836
39- - name : Fazer upload do executável
37+ - name : 📤 Fazer upload do executável
4038 uses : actions/upload-artifact@v4
4139 with :
4240 name : Sistema-de-Controle-EXE
You can’t perform that action at this time.
0 commit comments