We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0dd5e5 commit 0d091c0Copy full SHA for 0d091c0
.github/workflows/ci.yml
@@ -62,7 +62,7 @@ jobs:
62
id: action-run
63
continue-on-error: true
64
with:
65
- environment-paths: "${{ toJSON(matrix.env-paths) }}"
+ environment-paths: ${{ matrix.env-paths }}
66
- name: detect outcome
67
if: always()
68
shell: bash -l {0}
action.yaml
@@ -6,7 +6,7 @@ inputs:
6
description: >-
7
The paths to the environment files
8
required: True
9
- type: string
+ type: list
10
outputs: {}
11
12
runs:
@@ -23,4 +23,4 @@ runs:
23
COLUMNS: 120
24
FORCE_COLOR: 3
25
run: |
26
- python minimum_versions.py ${{ join(fromJSON(inputs.environment-paths), ' ') }}
+ python minimum_versions.py ${{ join(inputs.environment-paths, ' ') }}
0 commit comments