File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ runs:
3434 - id : dockerbuild
3535 name : " Build docker container"
3636 shell : bash
37- run : >
38- docker build
39- --pull
40- --file ${{ inputs.file }}
41- --tag ${{ inputs.tag }}${{ steps.uniquetag.unique }}
42- --build-arg base=${{ inputs.base }}
37+ run : |
38+ docker build \
39+ --pull \
40+ --file ${{ inputs.file }} \
41+ --tag ${{ inputs.tag }}${{ steps.uniquetag.unique }} \
42+ --build-arg base=${{ inputs.base }} \
4343 .
4444
4545# Do we need to be more specific?
Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ runs:
5050 - id : dockerrun
5151 name : " Run command ${{ input.command }} in ${{ input.tag }} docker container"
5252 shell : bash
53- run : >
54- docker run
55- --init -t --rm
56- --name "${{ input.name }}${{ input.id }}"
57- ${{ steps.processenv.outputs.env }}
58- "${{ input.tag }}${{ input.id }}"
53+ run : |
54+ docker run \
55+ --init -t --rm \
56+ --name "${{ input.name }}${{ input.id }}" \
57+ ${{ steps.processenv.outputs.env }} \
58+ "${{ input.tag }}${{ input.id }}" \
5959 ${{ input.command }}
You can’t perform that action at this time.
0 commit comments