From 28eb7efff277cf5c3d7e601bc09d5bef567e97e6 Mon Sep 17 00:00:00 2001 From: Constrat <56174894+Constrat@users.noreply.github.com> Date: Wed, 1 Jan 2025 16:45:36 +0100 Subject: [PATCH] fix: MaaDeps needs to be ignored 21c33e68ea2e2346ae3562c4684c34a11a32aea2 207172b366bb592f4c35954bd4ac46b6338e2e64 [skip changelog] --- .github/workflows/smoke-testing.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/smoke-testing.yml b/.github/workflows/smoke-testing.yml index 45cb977a51..eec87d0d75 100644 --- a/.github/workflows/smoke-testing.yml +++ b/.github/workflows/smoke-testing.yml @@ -10,7 +10,6 @@ on: - "CMakeLists.txt" - "MAA.sln" - "resource/**" - - "MaaDeps/**" - "!**/*.md" pull_request: paths: @@ -21,7 +20,6 @@ on: - "CMakeLists.txt" - "MAA.sln" - "resource/**" - - "MaaDeps/**" - "!**/*.md" workflow_dispatch: @@ -46,7 +44,7 @@ jobs: id: cache-exe uses: actions/cache/restore@v4 with: - key: Smoke-testing-sample.exe-${{ hashFiles('src/**', 'CMakeLists.txt', '3rdparty/include/**', 'include/**', 'cmake/**', 'MAA.sln', 'MaaDeps/**') }} + key: Smoke-testing-sample.exe-${{ hashFiles('src/**', 'CMakeLists.txt', '3rdparty/include/**', 'include/**', 'cmake/**', 'MAA.sln') }} path: | ./x64/Debug/Sample.exe ./x64/Debug/fastdeploy_ppocr.dll @@ -116,7 +114,7 @@ jobs: if: steps.cache-exe.outputs.cache-hit != 'true' && github.ref == 'refs/heads/dev' uses: actions/cache/save@v4 with: - key: Smoke-testing-sample.exe-${{ hashFiles('src/**', 'CMakeLists.txt', '3rdparty/include/**', 'include/**', 'cmake/**', 'MAA.sln', 'MaaDeps/**') }} + key: Smoke-testing-sample.exe-${{ hashFiles('src/**', 'CMakeLists.txt', '3rdparty/include/**', 'include/**', 'cmake/**', 'MAA.sln') }} path: | ./x64/Debug/Sample.exe ./x64/Debug/fastdeploy_ppocr.dll