From 8020cb3601df5962a40549791b7fb8f70cb8efb6 Mon Sep 17 00:00:00 2001 From: Martin Deinhofer Date: Fri, 6 Sep 2024 08:06:27 +0200 Subject: [PATCH] added installation of VC Redistributable --- .github/workflows/pyinstaller_windows.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pyinstaller_windows.yml b/.github/workflows/pyinstaller_windows.yml index e2443bf..57369e9 100644 --- a/.github/workflows/pyinstaller_windows.yml +++ b/.github/workflows/pyinstaller_windows.yml @@ -12,6 +12,10 @@ jobs: # Check-out repository - uses: actions/checkout@v3 + - name: Install Visual C++ Redistributable + run: | + choco install vcredist2015 + # Setup Python - uses: actions/setup-python@v4 with: