Skip to content

Commit 0d091c0

Browse files
committed
try concatenating without passing through json
1 parent e0dd5e5 commit 0d091c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
id: action-run
6363
continue-on-error: true
6464
with:
65-
environment-paths: "${{ toJSON(matrix.env-paths) }}"
65+
environment-paths: ${{ matrix.env-paths }}
6666
- name: detect outcome
6767
if: always()
6868
shell: bash -l {0}

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
description: >-
77
The paths to the environment files
88
required: True
9-
type: string
9+
type: list
1010
outputs: {}
1111

1212
runs:
@@ -23,4 +23,4 @@ runs:
2323
COLUMNS: 120
2424
FORCE_COLOR: 3
2525
run: |
26-
python minimum_versions.py ${{ join(fromJSON(inputs.environment-paths), ' ') }}
26+
python minimum_versions.py ${{ join(inputs.environment-paths, ' ') }}

0 commit comments

Comments
 (0)