Skip to content

Commit acdccf1

Browse files
FedeDPpoiana
authored andcommitted
fix(action.yml): fixed wrong yaml syntax.
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
1 parent 0b8311c commit acdccf1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ runs:
6666
- name: Run scap-open tests
6767
working-directory: ./ansible-playbooks
6868
shell: bash
69-
run: ansible-playbook scap-open.yml --extra-vars "@vars.yml" || :
69+
run: |
70+
ansible-playbook scap-open.yml --extra-vars "@vars.yml" || :
7071
7172
- name: Tar output files
7273
shell: bash
@@ -94,4 +95,5 @@ runs:
9495
if: always()
9596
working-directory: ./ansible-playbooks
9697
shell: bash
97-
run: ansible-playbook clean-up.yml --extra-vars "@vars.yml" || :
98+
run: |
99+
ansible-playbook clean-up.yml --extra-vars "@vars.yml" || :

0 commit comments

Comments
 (0)