mirror of
https://github.com/varunsridharan/actions-toolkit.git
synced 2025-02-23 23:23:47 +08:00
19 lines
No EOL
346 B
YAML
19 lines
No EOL
346 B
YAML
name: 'Alpine Docker Container'
|
|
description: ''
|
|
author: 'varunsridharan'
|
|
|
|
inputs:
|
|
value1:
|
|
description: 'Sample Value1'
|
|
value2:
|
|
description: 'Sample Value1'
|
|
value3:
|
|
description: 'Sample Value1'
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.value1 }}
|
|
- ${{ inputs.value2 }}
|
|
- ${{ inputs.value3 }} |