We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b9ec9 commit 723f483Copy full SHA for 723f483
.github/workflows/patch.yml
@@ -12,10 +12,10 @@ jobs:
12
steps:
13
- uses: actions/checkout@v5
14
- name: Set current tag
15
- run: echo "CURRENT_TAG=${git describe --tags --abbrev=0}" >> $GITHUB_ENV
+ run: echo "CURRENT_TAG=${/usr/bin/git describe --tags --abbrev=0}" >> $GITHUB_ENV
16
- run: echo "CURRENT_TAG=$CURRENT_TAG"
17
- name: Get commits count
18
- run: echo "COMMIT_COUNT=${git rev-list --count $CURRENT_TAG..master}" >> $GITHUB_ENV
+ run: echo "COMMIT_COUNT=${/usr/bin/git rev-list --count $CURRENT_TAG..master}" >> $GITHUB_ENV
19
- if: ${{env.COMMIT_COUNT >= 5}}
20
run: echo $CURRENT_TAG | awk 'BEGIN{FS=OFS="."} {$3+=1} 1'
21
0 commit comments