-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
45 lines (38 loc) · 1.03 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: "OS specific runner"
description: "Run a command based on the OS."
author: carlkidcrypto
inputs:
linux: # id of input
description: "linux commandline"
required: false
default: 'echo "No command specified for linux"'
macos: # id of input
description: "macos commandline"
required: false
default: 'echo "No command specified for macos"'
windows: # id of input
description: "windows commandline"
required: false
default: 'echo "No command specified for windows"'
linuxShell: # id of input
description: "linux commandline shell"
required: false
default: "bash"
macosShell: # id of input
description: "macos commandline shell"
required: false
default: "bash"
windowsShell: # id of input
description: "windows commandline shell"
required: false
default: "pwsh"
working_directory:
description: "The path from which to run commands in"
required: false
default: ""
branding:
icon: list
color: red
runs:
using: "node20"
main: "dist/index.js"