Skip to content

Commit

Permalink
🐛 Fix quarterly patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
flaxel committed Jan 24, 2024
1 parent 8ce6de6 commit db1d710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/template_release_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
COUNTER=${PARTS[2]}
WEEK_FROM_LAST_TAG=${PARTS[1]}
# if we have a new week we start to count from 0
if [ ${WEEK_FROM_LAST_TAG} != ${WEEK} ]; then
# if we have a new week and the weekly release we start to count from 0
if [ ${WEEK_FROM_LAST_TAG} != ${WEEK} ] && [ ${{ inputs.format }} == 'weekly' ]; then
COUNTER=0
fi
Expand Down

0 comments on commit db1d710

Please sign in to comment.