Skip to content

Commit 2135acc

Browse files
Assign identifiers to a variable to convert multi line arguments into single line argument (#25)
1 parent 5c7b107 commit 2135acc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@ runs:
1010
steps:
1111
- name: Install Mods
1212
shell: bash
13-
run: ckan install --headless --no-recommends ${{ runner.debug && '--verbose' }} ${{ inputs.dependency-identifiers }}
13+
run: |
14+
identifiers="${{ inputs.dependency-identifiers }}"
15+
ckan install --headless --no-recommends ${{ runner.debug && '--verbose' }} $identifiers
1416

0 commit comments

Comments
 (0)