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 7014ad9 commit 1809662Copy full SHA for 1809662
.github/workflows/patch.yml
@@ -23,8 +23,8 @@ jobs:
23
run: echo "commitCount=`echo $(git rev-list --count ${{steps.step1.outputs.currentTag}}..master)`" >> $GITHUB_OUTPUT
24
- if: ${{steps.step2.outputs.commitCount >= 5}}
25
id: step3
26
- run: echo "newTag=echo ${{steps.step1.outputs.currentTag}} | awk 'BEGIN{FS=OFS="."} {$3+=1} 1'" >> $GITHUB_OUTPUT
27
- - name: Environments
+ run: echo "newTag=`echo $(echo ${{steps.step1.outputs.currentTag}} | awk 'BEGIN{FS=OFS="."} {$3+=1} 1')`" >> $GITHUB_OUTPUT
+ - name: Outputs
28
run: |
29
echo "currentTag: ${{steps.step1.outputs.currentTag}}"
30
echo "commitCount: ${{steps.step2.outputs.commitCount}}"
0 commit comments