From 7edb93d3add6cd8ad19de6770f5d80d181815e6f Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Fri, 23 Oct 2020 14:57:14 -0600 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 15da111e..cd68ca3f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: build on: release: - types: [created, edited] + types: [created, edited, published] jobs: build: @@ -32,6 +32,10 @@ jobs: python-version: 2.7 - if: matrix.os == 'ubuntu-latest' run: sudo apt-get install -y libyaml-dev + - if: matrix.os == 'windows-latest' + run: | + choco install vcredist2008 + choco install --ignore-dependencies vcpython27 - name: Install PyInstaller # pyinstaller 4 doesn't support Python 2.7 run: pip install 'pyinstaller==3.*'