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 5ebe8d8 commit 771233a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ jobs:
run: |
OUTPUT_VALUE="jacqueline-test-1"
echo "OUTPUT_VALUE=${OUTPUT_VALUE}" >> $GITHUB_ENV
echo "::set-output name=generated_value::${OUTPUT_VALUE}"
echo "generated_value=${OUTPUT_VALUE}" >> $GITHUB_OUTPUT
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 771233a

Please sign in to comment.