Skip to content

Commit

Permalink
another bash check
Browse files Browse the repository at this point in the history
  • Loading branch information
mki-c2c committed Aug 12, 2024
1 parent 08c24b0 commit eefcab6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- name: compute tag name
shell: bash
run: |
echo git log --pretty="%p" -n 1
echo git log --pretty="%h" -n 1
echo $([[ $(git log --pretty="%p" -n 1 | wc -w) -gt 1 ]] && echo "PR 1" || echo "regular push 1")
echo $([[ $(git log --pretty="%p" -n 1 | wc -w) -gt 1 ]] \
&& echo "PR" \
|| echo "regular push")
Expand Down

0 comments on commit eefcab6

Please sign in to comment.