fix syntax
This commit is contained in:
parent
e5ba6ae14a
commit
b38836c38f
1 changed files with 8 additions and 2 deletions
10
action.yml
10
action.yml
|
@ -17,5 +17,11 @@ outputs:
|
|||
value: '${{ steps.install.outputs.compiler }}'
|
||||
|
||||
runs:
|
||||
- run: 'echo hi && setup "${{ runner.os }}" "${{inputs.compiler}}" "${{inputs.ssl}}"'
|
||||
shell: bash
|
||||
using: composite
|
||||
steps:
|
||||
- name: Installing it all
|
||||
id: install
|
||||
shell: bash
|
||||
run: |
|
||||
echo We are on "${{runner.os}}", requested "${{inputs.compiler}}" as CC
|
||||
setup "${{ runner.os }}" "${{inputs.compiler}}" "${{inputs.ssl}}"
|
||||
|
|
Loading…
Reference in a new issue