From 88e6adf7cd8ffb89f1c20ca6c49a2f8ad56883f9 Mon Sep 17 00:00:00 2001 From: Marvin Winkens Date: Wed, 5 Jun 2024 18:26:35 +0200 Subject: [PATCH] add missing data directory to artifacts --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bba47c5..60fa0e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,6 +48,7 @@ jobs: run: | pyinstaller -F viewer.py mv dist/viewer dist/viewer_linux_python_${{ matrix.python-version }} + cp -r data dist/data - name: Test Executable for Linux if: matrix.os == 'DISABLED' @@ -62,6 +63,7 @@ jobs: run: | pyinstaller -F viewer.py mv dist/viewer.exe dist/viewer_win64_python_${{ matrix.python-version }}.exe + cp -r data dist/data - name: Test Executable for Windows if: matrix.os == 'windows-latest'