Skip to content

Commit 84d12c2

Browse files
authored
Merge pull request #84 from Lenny4/FIX_RELEASE_WINDOWS
fix release windows
2 parents b9677fb + 6340ad5 commit 84d12c2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ jobs:
110110
run: flutter build windows --release
111111
- name: Copy dll files
112112
run: |
113-
copy C:\Windows\System32\msvcp140.dll build\windows\runner\Release
114-
copy C:\Windows\System32\vcruntime140.dll build\windows\runner\Release
115-
copy C:\Windows\System32\vcruntime140_1.dll build\windows\runner\Release
113+
copy C:\Windows\System32\msvcp140.dll build\windows\x64\runner\Release
114+
copy C:\Windows\System32\vcruntime140.dll build\windows\x64\runner\Release
115+
copy C:\Windows\System32\vcruntime140_1.dll build\windows\x64\runner\Release
116116
- name: Copy script files
117117
run: |
118-
mkdir .\build\windows\runner\Release\script\
119-
xcopy .\script\ .\build\windows\runner\Release\script\ /e
118+
mkdir .\build\windows\x64\runner\Release\script\
119+
xcopy .\script\ .\build\windows\x64\runner\Release\script\ /e
120120
- name: Zip release windows
121121
run: |
122122
move build/windows/runner/Release DeepFaceLabClient-windows

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 0.3.0
19+
version: 0.4.0
2020

2121
environment:
2222
sdk: '>=2.19.4 <3.0.0'

0 commit comments

Comments
 (0)