Skip to content

Commit

Permalink
fix conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt committed Feb 22, 2024
1 parent f5c8548 commit aab414b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release_prep_hatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ jobs:
title="Changelog and Version Bump Branch Merge"
message="The ${{ needs.create-temp-branch.outputs.branch_name }} branch was merged into mains"
echo "::notice title=${{ env.NOTIFICATION_PREFIX }}: $title::$message"
determine-release-branch:
runs-on: ubuntu-latest
needs:
Expand Down Expand Up @@ -480,7 +481,7 @@ jobs:
id: resolve_branch
run: |
branch=""
if [[ ${{ inputs.deploy_to == 'test' }} or ${{ inputs.nightly_release == 'true' }}]]
if [ ${{ inputs.deploy_to == 'test' }}] || [ ${{ inputs.nightly_release == 'true' }} ]
then
branch=${{ needs.create-temp-branch.outputs.branch_name }}
else
Expand Down

0 comments on commit aab414b

Please sign in to comment.