Skip to content

Commit

Permalink
fix(action): fixed outputs.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Feb 8, 2024
1 parent acdccf1 commit 07c8076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 07c8076

Please sign in to comment.