We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acdccf1 commit 07c8076Copy full SHA for 07c8076
action.yml
@@ -18,10 +18,10 @@ inputs:
18
outputs:
19
ansible_output:
20
description: "Uploaded ansible output artifact name"
21
- value: ${{ steps.upload.outputs.ansible }}
+ value: ${{ steps.store-outputs.outputs.ansible }}
22
matrix_output:
23
description: "Uploaded matrix artifact name"
24
- value: ${{ steps.upload.outputs.matrix }}
+ value: ${{ steps.store-outputs.outputs.matrix }}
25
26
runs:
27
using: "composite"
@@ -85,7 +85,7 @@ runs:
85
./matrix_gen --root-folder ~/ansible_output_${{ github.run_id }} --output-file matrix.md
86
87
- name: Set output
88
- id: outputs
+ id: store-outputs
89
shell: bash
90
run: |
91
echo "ansible=${{ github.action_path }}/ansible_output.tar" >> $GITHUB_OUTPUT
0 commit comments