From 755bc01e54de9cfd54bdf7d4f150d9b34e6e7c81 Mon Sep 17 00:00:00 2001 From: ym Date: Sat, 27 Dec 2025 20:05:14 +0900 Subject: [PATCH] ci: fix artifact path in packaging step --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e88a9e..1872e2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,10 +35,10 @@ jobs: mkdir release_pkg/include/blurwindow -Force # Copy Binaries - copy build/Release/blurwindow.dll release_pkg/bin/ + copy build/bin/Release/blurwindow.dll release_pkg/bin/ # Copy Libs - copy build/Release/blurwindow.lib release_pkg/lib/ + copy build/lib/Release/blurwindow.lib release_pkg/lib/ # Copy Headers copy include/blurwindow/*.h release_pkg/include/blurwindow/