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 b8fb4c8 commit 72a3f67Copy full SHA for 72a3f67
.github/actions/save-runtime-cache/action.yml
@@ -26,12 +26,14 @@ runs:
26
- id: delete
27
if: ${{ steps.lookup-runtime-cache.outputs.cache-hit }}
28
uses: actions/github-script@v7
29
+ env:
30
+ RUNTIME_CACHE_KEY: ${{ steps.lookup-runtime-cache.outputs.key }}
31
with:
32
script: |
33
github.rest.actions.deleteActionsCacheById({
34
owner: context.repo.owner,
35
repo: context.repo.repo,
- cache_id: steps.lookup-runtime-cache.outputs.key,
36
+ cache_id: `${RUNTIME_CACHE_KEY}`,
37
})
38
39
- id: save
0 commit comments