Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacqueline-57b committed Dec 5, 2024
1 parent 50bb70b commit 726ccd8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ jobs:
echo "OUTPUT_VALUE=${OUTPUT_VALUE}" >> $GITHUB_ENV
echo "generated_value=${OUTPUT_VALUE}" >> $GITHUB_OUTPUT
echo "${{ env.OUTPUT_VALUE }}"
- name: echo output
id: echo_output
run: |
echo "${{ steps.generate_output.outputs.generate_output}}"
echo "${{ env.OUTPUT_VALUE}}"
outputs:
run: |
echo "The generated value is: ${{ env.OUTPUT_VALUE }}"
echo "The generated value is: ${{ steps.generate_output.outputs.generated_value }}"
output_value: ${{ env.OUTPUT_VALUE }}
generated_value: ${{ steps.generate_output.outputs.generated_value }}

0 comments on commit 726ccd8

Please sign in to comment.