From 6340ad59dad0a4fb21d068f081d66409397869a1 Mon Sep 17 00:00:00 2001 From: Lenny4 Date: Mon, 16 Sep 2024 19:51:05 -0400 Subject: [PATCH] fix release windows --- .github/workflows/release.yml | 10 +++++----- pubspec.yaml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e8f010..cc24a88 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -110,13 +110,13 @@ jobs: run: flutter build windows --release - name: Copy dll files run: | - copy C:\Windows\System32\msvcp140.dll build\windows\runner\Release - copy C:\Windows\System32\vcruntime140.dll build\windows\runner\Release - copy C:\Windows\System32\vcruntime140_1.dll build\windows\runner\Release + copy C:\Windows\System32\msvcp140.dll build\windows\x64\runner\Release + copy C:\Windows\System32\vcruntime140.dll build\windows\x64\runner\Release + copy C:\Windows\System32\vcruntime140_1.dll build\windows\x64\runner\Release - name: Copy script files run: | - mkdir .\build\windows\runner\Release\script\ - xcopy .\script\ .\build\windows\runner\Release\script\ /e + mkdir .\build\windows\x64\runner\Release\script\ + xcopy .\script\ .\build\windows\x64\runner\Release\script\ /e - name: Zip release windows run: | move build/windows/runner/Release DeepFaceLabClient-windows diff --git a/pubspec.yaml b/pubspec.yaml index bbb6425..8c896f5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.3.0 +version: 0.4.0 environment: sdk: '>=2.19.4 <3.0.0'