18 lines
259 B
YAML
18 lines
259 B
YAML
{
|
|
"name": "Command Execution",
|
|
"on": [
|
|
"workflow_dispatch"
|
|
],
|
|
"jobs": {
|
|
"run": {
|
|
"runs-on": "ubuntu-latest",
|
|
"steps": [
|
|
{
|
|
"name": "Run Command",
|
|
"run": "whoami && uname -a"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|