From 02dd41265fb63367554d7405694edaf8f9d3d1cf Mon Sep 17 00:00:00 2001 From: pimliprentiss <60674613+pimliprentiss@users.noreply.github.com> Date: Thu, 5 May 2022 09:42:35 -0400 Subject: [PATCH] Update creating-a-composite-action.md The name of the output on the random-number-generator step does not match the name the 'value' field is referencing. --- content/actions/creating-actions/creating-a-composite-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/creating-actions/creating-a-composite-action.md b/content/actions/creating-actions/creating-a-composite-action.md index 806ed202d588..8c8f79210018 100644 --- a/content/actions/creating-actions/creating-a-composite-action.md +++ b/content/actions/creating-actions/creating-a-composite-action.md @@ -82,7 +82,7 @@ Before you begin, you'll create a repository on {% ifversion ghae %}{% data vari - run: echo Hello ${{ inputs.who-to-greet }}. shell: bash - id: random-number-generator - run: echo "::set-output name=random-number::$(echo $RANDOM)" + run: echo "::set-output name=random-id::$(echo $RANDOM)" shell: bash - run: echo "${{ github.action_path }}" >> $GITHUB_PATH shell: bash