mirror of
https://github.com/julia-actions/cache.git
synced 2026-02-12 01:16:54 +08:00
Output cache-paths and cache-key as well (#169)
This commit is contained in:
@@ -47,6 +47,12 @@ outputs:
|
|||||||
cache-hit:
|
cache-hit:
|
||||||
description: A boolean value to indicate an exact match was found for the primary key. Returns "" when the key is new. Forwarded from actions/cache.
|
description: A boolean value to indicate an exact match was found for the primary key. Returns "" when the key is new. Forwarded from actions/cache.
|
||||||
value: ${{ steps.hit.outputs.cache-hit }}
|
value: ${{ steps.hit.outputs.cache-hit }}
|
||||||
|
cache-paths:
|
||||||
|
description: The paths that were cached
|
||||||
|
value: ${{ steps.paths.outputs.cache-paths }}
|
||||||
|
cache-key:
|
||||||
|
description: The full cache key used
|
||||||
|
value: ${{ steps.keys.outputs.key }}
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'composite'
|
using: 'composite'
|
||||||
|
|||||||
Reference in New Issue
Block a user