Skip to content

public environment, github release action #2

public environment, github release action

public environment, github release action #2

Workflow file for this run

# docker_image.yml
name: 'Docker image'
description: 'Greet someone and record the time'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
required: true
default: 'World'
outputs:
time: # id of output
description: 'The time we greeted you'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.who-to-greet }}