This commit is contained in:
2023-03-22 02:28:43 -07:00
parent 4e84b0429a
commit 5f5df4a1d6
9 changed files with 12 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
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.args }}"