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 4813da2 commit 55688bfCopy full SHA for 55688bf
.github/workflows/test-loop.yml
@@ -35,7 +35,17 @@ jobs:
35
36
- name: Print project-json variable
37
run: |
38
- echo ${{ fromJson(needs.define-matrix.outputs.project-json) }}
+ echo ${{ needs.define-matrix.outputs.project-json }}
39
+
40
+ # job 2.1
41
+ print-output-2:
42
+ # runs-on: ubuntu-latest
43
+ needs: define-matrix
44
+ runs-on: ${{ needs.define-matrix.outputs.project-json }}
45
46
+ steps:
47
+ - name: Log JSON file
48
+ run: echo "${{needs.define-matrix.outputs.project-json }}"
49
50
# Job 3: Display data using "run" and "with"
51
# produce-artifacts:
0 commit comments