From 01abbc7a26ef3672c1d02487cab8c9b95c212a9f Mon Sep 17 00:00:00 2001 From: Nova Date: Mon, 24 Feb 2025 14:12:20 +0330 Subject: [PATCH] fix workflow cache --- .github/workflows/build-qv2ray-cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-qv2ray-cmake.yml b/.github/workflows/build-qv2ray-cmake.yml index 22f8452..2146384 100644 --- a/.github/workflows/build-qv2ray-cmake.yml +++ b/.github/workflows/build-qv2ray-cmake.yml @@ -42,15 +42,15 @@ jobs: uses: actions/cache@v4.2.0 with: path: artifacts.tgz - key: CommonCache-${{ matrix.cross_os }}-${{ matrix.cross_arch }}-${{ hashFiles('script/build_go.sh', 'core/cmd/*') }}-${{ matrix.go_version }} + key: CommonCache-${{ matrix.cross_os }}-${{ matrix.cross_arch }}-${{ hashFiles('script/build_go.sh', 'core/*') }}-${{ matrix.go_version }} - name: Install Golang if: steps.cache-common.outputs.cache-hit != 'true' uses: actions/setup-go@v5.2.0 with: go-version: ${{ matrix.go_version }} cache-dependency-path: | - core/cmd/nekobox_core/go.sum - core/cmd/updater/go.sum + core/server/go.sum + core/updater/go.sum - name: Build golang parts if: steps.cache-common.outputs.cache-hit != 'true' shell: bash