19 lines
449 B
YAML
19 lines
449 B
YAML
name: rockylinux
|
|
description: "Run rockylinux commands."
|
|
inputs:
|
|
command:
|
|
description: "Shell command to pass into Rocky Linux."
|
|
required: true
|
|
workingDir:
|
|
description: "Working directory to execute the commands in."
|
|
required: true
|
|
default: "."
|
|
outputs:
|
|
console:
|
|
description: "The console output of the command."
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- "${{ inputs.workingDir }}"
|
|
- "${{ inputs.command }}" |