From 916388cbba8a86b0007f9c4e2a454fe0566b7d63 Mon Sep 17 00:00:00 2001 From: seepine Date: Wed, 2 Aug 2023 09:23:13 +0800 Subject: [PATCH] fix --- .gitea/workflows/multiple.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/multiple.yml b/.gitea/workflows/multiple.yml index 98d79e6..d52dead 100644 --- a/.gitea/workflows/multiple.yml +++ b/.gitea/workflows/multiple.yml @@ -48,7 +48,7 @@ jobs: uses: actions/cache@v3 with: path: node_modules - key: ${{ runner.os }}-yarn-${{ setup.steps.get-hash.outputs.hash }} + key: ${{ runner.os }}-yarn-${{ needs.setup.steps.get-hash.outputs.hash }} - name: Dependent installation run: yarn install @@ -61,11 +61,15 @@ jobs: with: fetch-depth: 1 + - run: echo "${{ needs.setup.steps.get-hash.outputs.hash }}" + - run: echo "${{ steps.get-hash.outputs.hash }}" + - run: echo "${{ outputs.hash }}" + - name: Cache node modules uses: actions/cache@v3 with: path: node_modules - key: ${{ runner.os }}-yarn-${{ setup.steps.get-hash.outputs.hash }} + key: ${{ runner.os }}-yarn-${{ needs.setup.steps.get-hash.outputs.hash }} - name: Dependent installation run: yarn install