3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-05 05:04:07 +00:00
rust-cache/action.yml
2021-01-28 18:39:18 +01:00

25 lines
743 B
YAML

name: "Rust Cache"
description: "A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults."
author: "Arpad Borsos <arpad.borsos@googlemail.com>"
inputs:
key:
description: "An additional key for the cache"
required: false
sharedKey:
description: "An additional cache key that is stable over multiple jobs"
required: false
working-directory:
description: "The working directory this action should operate in"
required: false
outputs:
cache-hit:
description: 'A boolean value that indicates an exact match was found'
runs:
using: "node12"
main: "dist/restore/index.js"
post: "dist/save/index.js"
post-if: "success()"
branding:
icon: "archive"
color: "gray-dark"