Skip to content

Commit 07c8076

Browse files
FedeDPpoiana
authored andcommitted
fix(action): fixed outputs.
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
1 parent acdccf1 commit 07c8076

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ inputs:
1818
outputs:
1919
ansible_output:
2020
description: "Uploaded ansible output artifact name"
21-
value: ${{ steps.upload.outputs.ansible }}
21+
value: ${{ steps.store-outputs.outputs.ansible }}
2222
matrix_output:
2323
description: "Uploaded matrix artifact name"
24-
value: ${{ steps.upload.outputs.matrix }}
24+
value: ${{ steps.store-outputs.outputs.matrix }}
2525

2626
runs:
2727
using: "composite"
@@ -85,7 +85,7 @@ runs:
8585
./matrix_gen --root-folder ~/ansible_output_${{ github.run_id }} --output-file matrix.md
8686
8787
- name: Set output
88-
id: outputs
88+
id: store-outputs
8989
shell: bash
9090
run: |
9191
echo "ansible=${{ github.action_path }}/ansible_output.tar" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)