forked from hanabi1224/sccache-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (25 loc) · 720 Bytes
/
action.yml
File metadata and controls
25 lines (25 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: "sccache action - speedup Rust GitHub actions"
description: "A GitHub Action that speeds up Rust compilation with sccache."
inputs:
cache-key:
description: "The cache key."
default: "sccache"
cache-save:
description: "A Flag that indicates whether or not saving the cache"
default: true
cache-update:
description: "A Flag that indicates whether or not updating cache when hit"
default: true
release-name:
description: "The sccache version. e.g. v0.3.0"
default: "latest"
arch:
description: "The sccache binary architecture."
default: ""
runs:
using: "node16"
main: "dist/main/index.js"
post: "dist/post/index.js"
branding:
icon: "archive"
color: "black"