We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d094f72 commit 1e125c7Copy full SHA for 1e125c7
.github/workflows/create_binaries.yml
@@ -21,6 +21,12 @@ jobs:
21
run: flutter doctor
22
- name: Build Windows app
23
run: flutter build windows
24
+ - name: Copy VC redistributables
25
+ run: |
26
+ Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\msvcp140.dll') .
27
+ Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\vcruntime140.dll') .
28
+ Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\vcruntime140_1.dll') .
29
+ working-directory: ./build/windows/runner/Release
30
- name: Create artifact
31
uses: actions/upload-artifact@v2
32
with:
0 commit comments