We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e77f09 commit c02f143Copy full SHA for c02f143
.github/workflows/build.yml
@@ -80,8 +80,15 @@ jobs:
80
- name: Build
81
run: pnpm build
82
83
+ - name: Compute dep cache key
84
+ id: depkey
85
+ shell: bash
86
+ run: |
87
+ set -euo pipefail
88
+ echo "dep-cache-key=pnpm-$(sha256sum pnpm-lock.yaml | cut -d' ' -f1)-${GITHUB_RUN_ID}" >> "$GITHUB_OUTPUT"
89
+
90
outputs:
- dep-cache-key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }}
91
+ dep-cache-key: ${{ steps.depkey.outputs.dep-cache-key }}
92
93
binarytree:
94
needs: [build, checkout-submodules]
0 commit comments