Files
act_runner/pkg/runner/testdata/docker-action-host-env/action/action.yml
ChristopherHX a3c8116dee fix: step container workdir and mounts (#93)
* fix: step container workdir and mounts
* avoid perm issues and do not mount tool_cache
2025-04-26 14:14:52 +02:00

12 lines
308 B
YAML

name: "Hello World Docker Action"
description: "A simple Docker action that prints Hello, World! and environment variables."
inputs:
who-to-greet:
description: "Who to greet"
required: false
default: "World"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.who-to-greet }}