Skip to content

Commit ed0be56

Browse files
Update main.yml
1 parent ec05baa commit ed0be56

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)