Skip to content

Commit

Permalink
fix(action.yml): fixed wrong yaml syntax.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP authored and poiana committed Feb 8, 2024
1 parent 0b8311c commit acdccf1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ runs:
- name: Run scap-open tests
working-directory: ./ansible-playbooks
shell: bash
run: ansible-playbook scap-open.yml --extra-vars "@vars.yml" || :
run: |
ansible-playbook scap-open.yml --extra-vars "@vars.yml" || :
- name: Tar output files
shell: bash
Expand Down Expand Up @@ -94,4 +95,5 @@ runs:
if: always()
working-directory: ./ansible-playbooks
shell: bash
run: ansible-playbook clean-up.yml --extra-vars "@vars.yml" || :
run: |
ansible-playbook clean-up.yml --extra-vars "@vars.yml" || :

0 comments on commit acdccf1

Please sign in to comment.