Skip to content

Commit 10db38b

Browse files
committed
Typo fix
Signed-off-by: NilashishC <[email protected]>
1 parent d55b27a commit 10db38b

File tree

1 file changed

+2
-2
lines changed
  • .github/actions/build_install_collection

1 file changed

+2
-2
lines changed

.github/actions/build_install_collection/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ runs:
8787
run: ansible-galaxy collection install ./${{ steps.identify.outputs.tar_file || inputs.tar_file }} --pre -p /home/runner/collections
8888
shell: bash
8989
working-directory: ${{ inputs.source_path }}
90-
if: ${{ inputs.ansible_version != "stable-2.9" }}
90+
if: ${{ inputs.ansible_version != 'stable-2.9' }}
9191

9292
- name: Install collection and dependencies (without --pre flag)
9393
run: ansible-galaxy collection install ./${{ steps.identify.outputs.tar_file || inputs.tar_file }} -p /home/runner/collections
9494
shell: bash
9595
working-directory: ${{ inputs.source_path }}
96-
if: ${{ inputs.ansible_version == "stable-2.9" }}
96+
if: ${{ inputs.ansible_version == 'stable-2.9' }}
9797

9898
- name: Copy the galaxy.yml from source to destination, needed for pytest-ansible-units
9999
run: cp galaxy.yml ${{ steps.identify.outputs.collection_path || inputs.collection_path }}/galaxy.yml

0 commit comments

Comments
 (0)