Skip to content

Commit 132d93e

Browse files
committed
action: Pass input to run step via environment variable
1 parent 9947ef4 commit 132d93e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ runs:
1515
using: 'composite'
1616
steps:
1717
- id: setup-mpi
18-
run: ${GITHUB_ACTION_PATH}/setup-mpi.sh ${{ inputs.mpi }}
18+
run: ${GITHUB_ACTION_PATH}/setup-mpi.sh "$MPI"
1919
shell: bash
20+
env:
21+
MPI: ${{ inputs.mpi }}

0 commit comments

Comments
 (0)