From b38836c38f92c30dc9e28511891b54afe776c84a Mon Sep 17 00:00:00 2001 From: Load Accumulator Date: Thu, 2 Nov 2023 19:46:52 +0100 Subject: [PATCH] fix syntax --- action.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index e16b796..d93255d 100644 --- a/action.yml +++ b/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}}"