Skip to content

Commit 5d79a8c

Browse files
authored
Update workflow step to restore cache (#17656)
1 parent 4c38e3e commit 5d79a8c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build_test_deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,11 @@ jobs:
190190
runs-on: ubuntu-latest
191191
needs: [publishRelease]
192192
steps:
193-
- uses: actions/checkout@v2
193+
- uses: actions/cache@v2
194+
id: restore-build
195+
with:
196+
path: ./*
197+
key: ${{ github.sha }}
194198
- run: ./release-stats.sh
195199
- uses: ./.github/actions/next-stats-action
196200
env:

0 commit comments

Comments
 (0)