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 6096223 commit 8056860Copy full SHA for 8056860
.github/workflows/patch.yml
@@ -21,7 +21,7 @@ jobs:
21
run: echo "currentTag=`echo $(git describe --tags --abbrev=0)`" >> $GITHUB_OUTPUT
22
- id: step2
23
run: echo "commitCount=`echo $(git rev-list --count $CURRENT_TAG..master)`" >> $GITHUB_OUTPUT
24
- - if: ${{outputs.commitCount >= 5}}
+ - if: outputs.commitCount >= 5
25
id: step3
26
run: echo "newTag=echo $outputs.current-tag | awk 'BEGIN{FS=OFS="."} {$3+=1} 1'" >> $GITHUB_OUTPUT
27
- name: Environments
@@ -34,7 +34,7 @@ jobs:
34
35
runs-on: ubuntu-latest
36
37
- if: ${{needs.setup-outputs.outputs.commitCount >= 5}}
+ if: needs.setup-outputs.outputs.commitCount >= 5
38
steps:
39
- uses: actions/checkout@v5
40
with:
0 commit comments