Skip to content

Commit 7274d8b

Browse files
trying again
1 parent b845bd1 commit 7274d8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/windows-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# 4) Build com PyInstaller
3535
- name: Build with PyInstaller
3636
run: |
37-
pyinstaller --noconsole --name "DocViewer.exe" `
37+
pyinstaller --noconsole --name DocViewer `
3838
--icon="MarkViewDesktop/icons_svg/doc_icon.ico" `
3939
--add-data "MarkViewDesktop/ui_docV.py;." `
4040
--add-data "MarkViewDesktop/icons_svg/*;icons" `
@@ -43,8 +43,8 @@ jobs:
4343
# 5) Compactar o executável (.exe) em zip
4444
- name: Compressing files
4545
run: |
46-
Compress-Archive -Path dist\DocViewer\* -DestinationPath dist\docviewer-windows.zip
47-
dir dist
46+
Compress-Archive -Path dist\DocViewer\* -DestinationPath dist\docviewer-windows.zip
47+
dir dist
4848
4949
# 6) Criar ou atualizar uma Release no GitHub
5050
- name: Create GitHub Release

MarkViewDesktop/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
QVBoxLayout, QWidget, QAction)
88
import markdown # para as tabelas
99
from ui_docV import Ui_MainWindow
10-
# sera que vai?? sera??? for windows
10+
# sera que vai?? sera? for windows
1111
class MarkdownEditor(QMainWindow):
1212

1313
def __init__(self, file_to_open=None):

0 commit comments

Comments
 (0)