From 362a87ac7c6306f24cdadc9e61490f7b0ba5505a Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 8 Feb 2024 10:43:30 +0100 Subject: [PATCH] fix(action): fixed outputs. Signed-off-by: Federico Di Pierro --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index f94e9e1..68609d3 100644 --- a/action.yml +++ b/action.yml @@ -18,10 +18,10 @@ inputs: outputs: ansible_output: description: "Uploaded ansible output artifact name" - value: ${{ steps.upload.outputs.ansible }} + value: ${{ steps.store-outputs.outputs.ansible }} matrix_output: description: "Uploaded matrix artifact name" - value: ${{ steps.upload.outputs.matrix }} + value: ${{ steps.store-outputs.outputs.matrix }} runs: using: "composite" @@ -85,7 +85,7 @@ runs: ./matrix_gen --root-folder ~/ansible_output_${{ github.run_id }} --output-file matrix.md - name: Set output - id: outputs + id: store-outputs shell: bash run: | echo "ansible=${{ github.action_path }}/ansible_output.tar" >> $GITHUB_OUTPUT