From de136f715c918d211f7bcdc099e946cad93abfd7 Mon Sep 17 00:00:00 2001 From: Ben Rockwood Date: Mon, 4 Mar 2024 18:20:48 -0800 Subject: [PATCH] Fix step name Signed-off-by: Ben Rockwood --- .github/actions/PREview-data/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/PREview-data/action.yaml b/.github/actions/PREview-data/action.yaml index 5d990c5f2..36f381716 100644 --- a/.github/actions/PREview-data/action.yaml +++ b/.github/actions/PREview-data/action.yaml @@ -18,7 +18,7 @@ runs: steps: - name: Determine branch shortname and bucket name shell: bash - id: names + id: data run: | BRANCH=`echo ${GITHUB_HEAD_REF} | cksum | cut -d" " -f1` # Use checksum of branch name to avoid invalid bucket names echo BRANCH=${BRANCH} >> $GITHUB_OUTPUT @@ -35,4 +35,4 @@ runs: - name: Verify outputs shell: bash id: out - run: echo ${{ steps.names.outputs.BUCKET }} + run: echo ${{ steps.data.outputs.BUCKET }}