Get matrix values from an env variable (or an external source such as a file) #32284
Answered
by
airtower-luna
pantelis-karamolegkos
asked this question in
Actions
-
I want to set up a GitHub action workflow that uses a I would to be able to set the input values of such a
Is it possible for the workflow to read |
Beta Was this translation helpful? Give feedback.
Answered by
airtower-luna
Sep 8, 2022
Replies: 1 comment
-
Yes, I've seen people use the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pantelis-karamolegkos
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, I've seen people use the
fromJSON()
for that. Usually the approach is that one job creates a job output containing JSON, and a second one uses that as its input. The documentation even has an example of that.