Skip to content

Commit 50aa904

Browse files
committed
Fix output naming
1 parent 31fa857 commit 50aa904

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
algorithms:
1111
runs-on: ubuntu-latest
1212
outputs: # here we use the outputs from steps, and set outputs for the job `configure`
13-
config: ${{ steps.algorithms.outputs.config }}
13+
config: ${{ steps.algorithms.outputs.algorithms }}
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Read algorithms
@@ -20,7 +20,7 @@ jobs:
2020
cat ./tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT
2121
echo "EOF" >> $GITHUB_OUTPUT
2222
- name: Log algorithms
23-
run: echo "${{fromJson(steps.algorithms.outputs.config)}}"
23+
run: echo "${{fromJson(steps.algorithms.outputs.algorithms)}}"
2424

2525
build:
2626
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)