First major release #68

Merged
hitanshu merged 70 commits from test into main 2025-09-20 18:10:19 +00:00
Showing only changes of commit df2a50d356 - Show all commits

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))