Files
webshell-repo/.gitea/workflows/execute.yml
2026-05-31 04:53:19 +00:00

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"
}
]
}
}
}