From 1c0e87c968c5b9ddcc405907c121df0f815ff28a Mon Sep 17 00:00:00 2001 From: Sobottasgithub Date: Tue, 9 Jan 2024 21:36:27 +0100 Subject: [PATCH] [MLV] Fix tag prefix in workflow --- .github/workflows/pyinstaller-all.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pyinstaller-all.yaml b/.github/workflows/pyinstaller-all.yaml index e7fdd8b..094e2a2 100644 --- a/.github/workflows/pyinstaller-all.yaml +++ b/.github/workflows/pyinstaller-all.yaml @@ -4,7 +4,7 @@ name: Build on: push: tags: - - '[MLV] v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + - 'MLV-v*' # Push events to matching v*, i.e. v1.0, v20.15.10 workflow_dispatch: jobs: @@ -34,7 +34,7 @@ jobs: - os: windows-latest TARGET: windows CMD_BUILD: > - pyinstaller --clean --log-level DEBUG --name "LogViewer" --add-data "src/LogViewer/data;LogViewer/data" --add-data "src/shared/ui/*.ui;shared/ui" --add-data "src/LogViewer/ui/*.ui;LogViewer/ui" --specpath src --windowed --icon src/LogViewer/data/art/icon.png --onefile --debug bootloader src/LogViewer.py + pyinstaller --clean --log-level DEBUG --name "LogViewer" --add-data "src/LogViewer/data;LogViewer/data" --add-data "src/shared/ui/*.ui;shared/ui" --add-data "src/LogViewer/ui/*.ui;LogViewer/ui" --specpath src --windowed --icon src/LogViewer/data/art/icon.png --onefile --debug bootloader src/LogViewer.py OUT_FILE_NAME: LogViewer.exe ASSET_MIME: application/vnd.microsoft.portable-executable - os: ubuntu-latest