From 5f0dc30070ad27652ed1f6a5488136437c88030f Mon Sep 17 00:00:00 2001 From: songbirdzz <165868972+songbirdzz@users.noreply.github.com> Date: Sun, 22 Dec 2024 22:08:32 -0800 Subject: [PATCH] Fix: xcopy error --- .github/workflows/auto-prerelease.yaml | 2 +- .github/workflows/auto-release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-prerelease.yaml b/.github/workflows/auto-prerelease.yaml index e27cb3c..43b092a 100644 --- a/.github/workflows/auto-prerelease.yaml +++ b/.github/workflows/auto-prerelease.yaml @@ -70,7 +70,7 @@ jobs: - run: flutter build windows # Substitute DLLs - - run: xcopy ".github/dlls/*.dll" "build/windows/x64/runner/Release\" /Y + - run: xcopy ".github/dlls/*.dll" "build/windows/x64/runner/Release/" /Y - run: Compress-Archive -Path build/windows/x64/runner/Release -DestinationPath knkpanime-windows.zip - name: Download MacOS build diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml index 168a86e..9b1c697 100644 --- a/.github/workflows/auto-release.yaml +++ b/.github/workflows/auto-release.yaml @@ -42,7 +42,7 @@ jobs: - run: flutter build windows # Substitute DLLs - - run: xcopy ".github/dlls/*.dll" "build/windows/x64/runner/Release\" /Y + - run: xcopy ".github/dlls/*.dll" "build/windows/x64/runner/Release/" /Y - run: Compress-Archive build/windows/x64/runner/Release knkpanime-windows.zip - uses: r0adkll/sign-android-release@v1