generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
action.yml
45 lines (44 loc) · 1.31 KB
/
action.yml
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
39
40
41
42
43
44
45
name: 'Nix Shell'
description:
'Run any command you like in a deterministic nix shell on Linux and macOS'
author: '@workflow'
inputs:
interpreter:
required: false
description: 'Interpreter to use in the nix shell shebang'
default: 'bash'
packages:
required: false
description:
'Comma-separated list of packages to pre-install in your shell. Defaults
to simply "bash". Cannot be used together with the flakes option'
default: 'bash'
flakes:
required: false
description:
'Comma-separated list of fully qualified flakes to pre-install in your
shell. Use either packages or flakes. Cannot be used together with the
packages option'
default: ''
flakes-from-devshell:
required: false
description: 'If set to true, uses devShell instead.'
default: false
custom-devshell:
required: false
description: 'If set, uses a customly named devShell from the current flake'
default: ''
script:
required: true
description: 'The actual script to execute in the shell'
working-directory:
required: false
description:
'Execute the script inside the specified working directory instead of the
repository root. Example: path/to/dir'
branding:
color: 'blue'
icon: 'chevron-right'
runs:
using: 'node20'
main: 'dist/index.js'