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 31fa857 commit 50aa904Copy full SHA for 50aa904
.github/workflows/analysis.yml
@@ -10,7 +10,7 @@ jobs:
10
algorithms:
11
runs-on: ubuntu-latest
12
outputs: # here we use the outputs from steps, and set outputs for the job `configure`
13
- config: ${{ steps.algorithms.outputs.config }}
+ config: ${{ steps.algorithms.outputs.algorithms }}
14
steps:
15
- uses: actions/checkout@v3
16
- name: Read algorithms
@@ -20,7 +20,7 @@ jobs:
20
cat ./tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT
21
echo "EOF" >> $GITHUB_OUTPUT
22
- name: Log algorithms
23
- run: echo "${{fromJson(steps.algorithms.outputs.config)}}"
+ run: echo "${{fromJson(steps.algorithms.outputs.algorithms)}}"
24
25
build:
26
0 commit comments