Skip to content

Commit

Permalink
Fix missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
DriesSchaumont committed Dec 13, 2023
1 parent 98f7808 commit c0d3b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
- name: Branch to checkout (use existing target branch if it exists)
id: get_checkout_branch
run:
branch_exists=$(git ls-remote https://github.com/openpipelines-bio/openpipeline.git | grep ${{ github.ref }})
run: |
branch_exists=$(git ls-remote "https://github.com/openpipelines-bio/openpipeline.git" | grep ${{ github.ref }})
if [ "$?" -ne 0 ]; then
echo "checkout_branch='${{ github.ref_name }}_build'" >> "$GITHUB_OUTPUT"
else
Expand Down

0 comments on commit c0d3b28

Please sign in to comment.