Skip to content

Commit 1e6fb05

Browse files
committed
misc: Folded operator doesn't work with indent
1 parent d57b2a6 commit 1e6fb05

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/actions/docker-build/action.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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?

.github/actions/docker-run/action.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)