-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathaction.yml
More file actions
38 lines (35 loc) · 1.03 KB
/
action.yml
File metadata and controls
38 lines (35 loc) · 1.03 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
name: "attic-action"
author: "Ryan Cao"
description: "Cache Nix derivations with Attic"
branding:
icon: "layers"
color: "blue"
inputs:
endpoint:
description: "Attic endpoint"
required: true
cache:
description: "Attic cache name"
required: true
inputs-from:
description: "Path to get the Nixpkgs flake input from instead of `github:NixOS/nixpkgs/nixpkgs-unstable`"
required: false
include-paths:
description: "Regular expressions for matching paths to include when pushing (delimited by newlines)"
required: false
exclude-paths:
description: "Regular expressions for matching paths to exclude when pushing (delimited by newlines)"
required: false
skip-push:
description: "Disable pushing to the cache automatically"
required: false
token:
description: "Attic authorization token"
required: false
skip-use:
description: "Set to true to skip using Attic cache as a substituter"
required: false
runs:
using: "node24"
main: "dist/index.js"
post: "dist/index.js"