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 <nierro92@gmail.com>
  • Loading branch information
FedeDP committed Feb 8, 2024
1 parent acdccf1 commit 362a87a
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 362a87a

Please sign in to comment.