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 0873cee commit 9af6754Copy full SHA for 9af6754
.github/workflows/patch.yml
@@ -20,11 +20,11 @@ jobs:
20
run: echo "COMMIT_COUNT=${git rev-list --count $CURRENT_TAG..master}" >> $GITHUB_ENV
21
makepatch:
22
needs: getcount
23
- if: ${{env.COMMIT_COUNT >= 5}}
+ if: ${{jobs.getcount.env.COMMIT_COUNT >= 5}}
24
runs-on: ubuntu-latest
25
steps:
26
- uses: actions/checkout@v5
27
- name: Make a new tag
28
- run: echo "$CURRENT_TAG" | awk 'BEGIN{FS=OFS="."} {$3+=1} 1'
+ run: echo jobs.getcount.env.CURRENT_TAG | awk 'BEGIN{FS=OFS="."} {$3+=1} 1'
29
30
0 commit comments