We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e32932d commit 9f9a7b6Copy full SHA for 9f9a7b6
1 file changed
.github/actions/docker-run/action.yaml
@@ -48,12 +48,12 @@ runs:
48
echo "env=$ENV_STRING" >> "$GITHUB_OUTPUT"
49
50
- id: dockerrun
51
- name: "Run command ${{ input.command }} in ${{ input.tag }} docker container"
+ name: "Run command ${{ inputs.command }} in ${{ inputs.tag }} docker container"
52
shell: bash
53
run: |
54
docker run \
55
--init -t --rm \
56
- --name "${{ input.name }}${{ input.id }}" \
+ --name "${{ inputs.name }}${{ inputs.id }}" \
57
${{ steps.processenv.outputs.env }} \
58
- "${{ input.tag }}${{ input.id }}" \
59
- ${{ input.command }}
+ "${{ inputs.tag }}${{ inputs.id }}" \
+ ${{ inputs.command }}
0 commit comments