From 8b961c0bf57c3a77856d29c2f476dfbf6a5c06e9 Mon Sep 17 00:00:00 2001 From: songbirdzz <165868972+songbirdzz@users.noreply.github.com> Date: Mon, 23 Dec 2024 09:37:21 -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 43b092a..c90c86e 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 9b1c697..8a232c4 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