From 5e2074fd13286628186665002476bf67b692dc29 Mon Sep 17 00:00:00 2001 From: robertlincecum Date: Thu, 27 Jun 2024 16:20:11 -0500 Subject: [PATCH] try again --- .github/workflows/deploy-dev-common.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-dev-common.yml b/.github/workflows/deploy-dev-common.yml index 641234a..8cdb1f5 100644 --- a/.github/workflows/deploy-dev-common.yml +++ b/.github/workflows/deploy-dev-common.yml @@ -116,15 +116,15 @@ jobs: get-branch: runs-on: ubuntu-latest outputs: - branch: $={{ steps.get_branch.outputs.branch }} - + branch: ${{ steps.get-branch.outputs.branch_name }} steps: - name: Get branch name - id: get_branch - run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT + id: get-branch + run: echo "::set-output name=branch_name::${GITHUB_REF#refs/heads/}" env: GITHUB_REF: ${{ github.ref }} + buildDeployDevTS: needs: detect-language if: needs.detect-language.outputs.language == 'typescript'