Skip to content

Commit 550e89e

Browse files
committed
fix action Build windows
1 parent 7b0db3a commit 550e89e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,25 @@ jobs:
3030
include:
3131
- target: android
3232
os: ubuntu-latest
33-
flutter_version: '3.13'
33+
# flutter_version: '3.13'
3434
flutter_channel: 'stable'
3535
artifact_name: release-apk
3636
artifact_path: build/app/outputs/apk/release/FEhViewer*.apk
3737
- target: ios
3838
os: macos-12
39-
flutter_version: '3.13'
39+
# flutter_version: '3.13'
4040
flutter_channel: 'stable'
4141
artifact_name: release-ios
4242
artifact_path: build/**/FEhViewer*.ipa
4343
- target: macos
4444
os: macos-12
45-
flutter_version: '3.13'
45+
# flutter_version: '3.13'
4646
flutter_channel: 'stable'
4747
artifact_name: release-mac
4848
artifact_path: build/macos/FEhViewer*.zip
4949
- target: windows
5050
os: windows-latest
51-
flutter_version: '3.13'
51+
# flutter_version: '3.13'
5252
flutter_channel: 'stable'
5353
artifact_name: release-windows
5454
artifact_path: build/windows/FEhViewer*.zip
@@ -244,7 +244,7 @@ jobs:
244244
run: |
245245
flutter build windows --release
246246
$DestDir = "build\windows\FEhViewer"
247-
$SrcDir = "build\windows\runner\Release"
247+
$SrcDir = "build\windows\x64\runner\Release"
248248
New-Item -Path $DestDir -ItemType Directory
249249
Copy-Item $SrcDir\* -Recurse $DestDir
250250
Copy-Item -Filter *.dll -Path windows\* -Destination $DestDir -Force

0 commit comments

Comments
 (0)