Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlincecum committed Jun 27, 2024
1 parent ab56c5b commit 5e2074f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-dev-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 5e2074f

Please sign in to comment.