Skip to content

Commit

Permalink
fix: adds more debugging for bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
VannaDii committed Dec 14, 2023
1 parent 654dad8 commit 4095b56
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ jobs:
GH_TOKEN: ${{ github.token }}
run: |
IFS=. read -r v1 v2 v3 <<< "${LATEST_TAG}" # split into (integer) components
echo "LATEST_TAG=${LATEST_TAG}"
echo "LATEST_VERSION=${v1}.${v2}.${v3}"
((v3++)) # do the math
echo "NEXT_VERSION=${v1}.${v2}.${v3}"
echo "LATEST_TAG=${v1}.${v2}.${v3}" >> $GITHUB_ENV
- name: 🏷️ Tag
Expand Down

0 comments on commit 4095b56

Please sign in to comment.