Trying to figure out RCA

This commit is contained in:
hitanshu310 2025-06-06 00:02:30 +05:30
parent c6ded4a74d
commit df2a50d356

View File

@ -25,10 +25,10 @@ jobs:
- name: Get latest tag
run: |
echo "VERSION=$(git describe --tags --abbrev=0)"
echo $VERSION
echo "MAJOR=$(echo $VERSION | /usr/bin/cut -d "." -f 1)"
sudo echo "MINOR=$(echo $VERSION | cut -d "." -f 2)"
echo "PATCH=$(echo $VERSION | cut -d "." -f 3)"
echo "${VERSION}"
echo "MAJOR=$(echo ${VERSION} | /usr/bin/cut -d "." -f 1)"
sudo echo "MINOR=$(echo ${VERSION} | cut -d "." -f 2)"
echo "PATCH=$(echo ${VERSION} | cut -d "." -f 3)"
- name: Increment version
run: |
PATCH=$((PATCH + 1))